Redux分类器-检索动态页面


Redux sorter - retrieve dynamic pages

我正在使用Redux Wordpress框架,并且在排序器中检索页面数据时遇到了一点麻烦。

这是我的数组,与"页面"被拉作为数据,以及我的预设选项。

array(
                    'id'        => 'opt-homepage-layout',
                    'type'      => 'sorter',
                    'title'     => 'Layout Manager ',
                    'subtitle'  => 'Organise how you want the layout on the home page',
                    'compiler'  => 'true',
                    'data' => array('disabled' => 'pages'),
                    'options'   => array(
                        'enabled'   => array(
                            'hero'          => 'Hero',
                            'menu'          => 'Menu',
                            /*'team'            => 'Team',
                            'quote'         => 'Quote',
                            'portfolio'     => 'Portfolio',
                            'testimonial'   => 'Testimonial',
                            'prices'        => 'Prices',*/
                            'map'           => 'Map',
                            'contact'       => 'Contact'
                        ),
                        'disabled'  => array(
                        ),
                        'backup'    => array(
                        ),
                    ),
                    'limits' => array(
                        'disabled'  => 10,
                        'backup'    => 20,
                    ),
                ),

这是我的前端,它显示我预定义的块很好,我只是不能得到代码来显示动态页面,我已经到处搜索和所有死胡同到目前为止。

$layout = $redux_option['opt-homepage-layout']['enabled'];
if ($layout): foreach ($layout as $key=>$value) {
    switch($key) {
        case 'hero': get_template_part( 'templates/content', 'Hero' );
        include(dirname(__FILE__) . '/../includes/hero.php');
        break;
        case 'menu': get_template_part( 'templates/content', 'Menu' );
        include(dirname(__FILE__) . '/../includes/nav.php');
        break;
        case 'team': get_template_part( 'templates/content', 'Team' );
        include(dirname(__FILE__) . '/../includes/team.php');
        break;
        case 'quote': get_template_part( 'templates/content', 'Quote' );
        include(dirname(__FILE__) . '/../includes/quote.php');
        break;
        case 'portfolio': get_template_part( 'templates/content', 'Portfolio' );
        include(dirname(__FILE__) . '/../includes/portfolio.php');
        break;
        case 'testimonial': get_template_part( 'templates/content', 'Testimonial' );
        include(dirname(__FILE__) . '/../includes/testimonial.php');
        break;
        case 'prices': get_template_part( 'templates/content', 'Prices' );
        include(dirname(__FILE__) . '/../includes/prices.php');
        break;
        case 'map': get_template_part( 'templates/content', 'Map' );
        print_r ('<div id="map"></div>');
        break;
        case 'contact': get_template_part( 'templates/content', 'Contact' );
        include(dirname(__FILE__) . '/../includes/contact.php');
        break;
        case 'pages': get_template_part( 'templates/content', 'Pages' );
        include(dirname(__FILE__) . '/../includes/contact.php');
        break;
    }
}
endif;
你的帮助太好了!

我使用以下代码来显示(或隐藏)通过wp-admin中的'opt-homepage-layout'字段选择的模板部分。

<?php global $redux_option;
$layout = $redux_option['opt-homepage-layout']['enabled'];
if ($layout): foreach ($layout as $key=>$value) {
    switch($key) {
        case 'jumbotron': get_template_part( 'partials/home', 'jumbotron' );
        break;
        case 'jumbotron': get_template_part( 'partials/home', 'slides' );
        break;
        case 'overview': get_template_part( 'partials/home', 'overview' );
        break;
        case 'tickets': get_template_part( 'partials/home', 'tickets' );
        break;
        case 'history': get_template_part( 'partials/home', 'history' );    
        break;  
        case 'contact': get_template_part( 'partials/footer', 'contact' );    
        break; 
    }
}
endif; ?>