我的代码如下:
采样的config.php
array(
'id' => 'opt-select-featured-post-3',
'type' => 'select',
'data' => 'categories',
'title' => __(
'Select Category 3rd Columns',
'redux-framework-demo'
),
),
模板-home.php
<?php $my_query = new WP_Query('category_name='.get_cat_name($arefin030201['opt-select-featured-post-3']).'&showposts=1&order=DESC&orderby=id'); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<h3><?php the_title() ?></h3>
<?php the_content() ?><br><a href="<?php the_permalink(); ?>">more info</a>
<?php endwhile; ?>
答案 0 :(得分:0)
因此,如果您想选择多个类别,请将multi =&gt; true设置为您的选择选项。然后,您将获得类别ID,您可以相应地进行查询。
答案 1 :(得分:0)
如果您可以/想要更改模板的那一部分,您还可以使用Category Parameters for WP_Query并将多个类别作为数组传递。
$query = new WP_Query( 'cat=2,6,17,38' );