File: /www/wwwroot/1.scey.cn/wp-content/themes/Leading/index.php
<?php
/**
* @Author: 大胡子
* @Email: dahuzi@xintheme.com
* @Link: www.dahuzi.me
* @Date: 2020-01-17 09:27:19
* @Last Modified by: dahuzi
* @Last Modified time: 2020-02-24 00:52:24
*/
get_header();
get_template_part('template-parts/index/banner');
if( $modular = wpjam_theme_get_setting('index_modular') ){
$modular = array_filter($modular, function($modular){
$modular_type = $modular['index_modular_type'];
if( $modular_type == 'post' ){ //判断文章模块
$post_modular = $modular['post_modular_type'];
include TEMPLATEPATH.'/template-parts/index/modular-'.$post_modular.'.php';
}elseif( $modular_type == 'code' ){ //判断自定义代码模块
echo $modular['modular_code'];
}else{ //其他模块
include TEMPLATEPATH.'/template-parts/index/modular-'.$modular_type.'.php';
}
});
}
get_footer();?>