我有一个模板,我正在使用,它可以选择显示一组文章在首页的特色部分,或选择性地显示一组指定的页面在同一个特色区域。但是,我发现代码显示在/或
我不太清楚如何将两者结合起来,并将一组文章和页面列表放在一起。
据我所知,query_posts()会覆盖wordpress在页面上显示的任何一组项目,因此,在这里,根据主题的模式,它会传递参数到query_posts()以获取特定类别的文章,或者传递到一组页面中:
<div id="slides">
<?php global $ids;
$ids = array();
$featured_cat = get_option('mytemplate_feat_cat');
$featured_num = get_option('mytemplate_featured_num');
if (get_option('mytemplate_use_pages') == 'false') query_posts("showposts=$featured_num&cat=".get_cat_ID($featured_cat));
else {
global $pages_number;
if (get_option('mytemplate_feat_pages') <> '') $featured_num = count(get_option('mytemplate_feat_pages'));
else $featured_num = $pages_number;
query_posts(array
('post_type' => 'page',
'orderby' => 'menu_order',
'order' => 'ASC',
'post__in' => get_option('mytemplate_feat_pages'),
'showposts' => $featured_num
));
} ?>
<!-- Start my loop to display everything-->
<?php if (have_posts()) : while (have_posts()) : the_post();
global $post; ?>
到目前为止,我已经考虑了一点,但还不能忘记如何组合参数来表示查询日志(getMyPostsArray().addList(oHineedAssociatePagesToo())//是的,我知道这看起来像c之类的…我不是一个php人。
下面是一个更易于阅读的版本,更接近我想要的代码:
$featured_cat = get_option('mytemplate_feat_cat');
//I combined featured_num to get the total number of featured items to display
$featured_num = get_option('mytemplate_featured_num') + count(get_option('mytemplate_feat_pages'));;
query_posts("showposts=$featured_num&cat=".get_cat_ID($featured_cat));
//I think this second line overwrites the first query_posts() :-/
query_posts(array
('post_type' => 'page',
'orderby' => 'menu_order',
'order' => 'ASC',
'post__in' => get_option('mytemplate_feat_pages'),
'showposts' => $featured_num
));