As the sun rises and the forest mist clears, and the clouds return and the caves darken, these changes of light and shadow are the morning and evening in the mountains. Wildflowers bloom with their subtle fragrance, fine trees flourish with their dense shade, the wind and frost are pure and clean, and the water recedes to reveal the rocks—these are the four seasons in the mountains. Going out in the morning and returning in the evening, the scenery of the four seasons is different, and the joy is endless.至于负者歌于途,行者休于树,前者呼,后者应,伛偻提携,往来而不绝者,滁人游也。临溪而渔,溪深而鱼肥,酿泉为酒,泉香而酒洌,山肴野蔌,杂然而前陈者,太守宴也。宴酣之乐,非丝非竹,射者中,弈者胜,觥筹交错,起坐而喧哗者,众宾欢也。苍颜白发,颓然乎其间者,太守醉也。
<?php
// Prevent file from being loaded directly
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
/**
* Output the opening page container div.
*
* @since ??
*
* @return void
*/
function et_divi_filter_theme_builder_template_before_page_wrappers() {
get_template_part( 'theme-before-wrappers' );
}
add_action( 'et_theme_builder_template_before_page_wrappers', 'et_divi_filter_theme_builder_template_before_page_wrappers' );
/**
* Output the header if necessary.
*
* @since ??
*
* @param integer $layout_id
* @param bool $layout_enabled
*
* @return void
*/
function et_divi_filter_theme_builder_template_before_header( $layout_id, $layout_enabled ) {
if ( 0 === $layout_id && $layout_enabled ) {
get_template_part( 'theme-header' );
}
}
add_action( 'et_theme_builder_template_before_header', 'et_divi_filter_theme_builder_template_before_header', 10, 2 );
/**
* Output the opening page container div.
*
* @since ??
*
* @return void
*/
function et_divi_filter_theme_builder_template_after_header() {
get_template_part( 'theme-after-header' );
}
add_action( 'et_theme_builder_template_after_header', 'et_divi_filter_theme_builder_template_after_header' );
/**
* Output the opening main content div.
*
* @since ??
*
* @return void
*/
function et_divi_filter_theme_builder_template_before_body() {
?>
<div id="main-content">
<?php
}
add_action( 'et_theme_builder_template_before_body', 'et_divi_filter_theme_builder_template_before_body' );
/**
* Output the closing main content div.
*
* @since ??
*
* @return void
*/
function et_divi_filter_theme_builder_template_after_body() {
?>
</div>
<?php
}
add_action( 'et_theme_builder_template_after_body', 'et_divi_filter_theme_builder_template_after_body' );
/**
* Output the footer if necessary.
*
* @since ??
*
* @param integer $layout_id
* @param bool $layout_enabled
*
* @return void
*/
function et_divi_filter_theme_builder_template_after_footer( $layout_id, $layout_enabled ) {
if ( 0 === $layout_id && $layout_enabled ) {
get_template_part( 'theme-footer' );
}
get_template_part( 'theme-after-footer' );
}
add_action( 'et_theme_builder_template_after_footer', 'et_divi_filter_theme_builder_template_after_footer', 10, 2 );
/**
* Output the closing page container div.
*
* @since ??
*
* @return void
*/
function et_divi_filter_theme_builder_template_after_page_wrappers() {
get_template_part( 'theme-after-wrappers' );
}
add_action( 'et_theme_builder_template_after_page_wrappers', 'et_divi_filter_theme_builder_template_after_page_wrappers' );
/**
* Disable TB hooks in order to be compatible with LearnDash's Focus mode.
*
* @since ??
*/
function et_divi_action_theme_builder_compatibility_learndash_focus_mode() {
remove_action( 'et_theme_builder_template_before_page_wrappers', 'et_divi_filter_theme_builder_template_before_page_wrappers' );
remove_action( 'et_theme_builder_template_before_header', 'et_divi_filter_theme_builder_template_before_header' );
remove_action( 'et_theme_builder_template_after_header', 'et_divi_filter_theme_builder_template_after_header' );
remove_action( 'et_theme_builder_template_before_body', 'et_divi_filter_theme_builder_template_before_body' );
remove_action( 'et_theme_builder_template_after_body', 'et_divi_filter_theme_builder_template_after_body' );
remove_action( 'et_theme_builder_template_after_footer', 'et_divi_filter_theme_builder_template_after_footer' );
remove_action( 'et_theme_builder_template_after_page_wrappers', 'et_divi_filter_theme_builder_template_after_page_wrappers' );
}
add_action( 'et_theme_builder_compatibility_learndash_focus_mode', 'et_divi_action_theme_builder_compatibility_learndash_focus_mode' );