我使用的是Redux Wordpress Framework,在检索分拣机中的页面数据方面遇到了一些麻烦。
这是我的阵列,其中包含" Pages"作为数据被拉动,以及我预设的选项。
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;
你的帮助会很棒!
答案 0 :(得分:0)
我使用以下内容显示(或隐藏)通过&#39; opt-homepage-layout&#39;选择的模板部件。 wp-admin中的字段。
<?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; ?>