我试图让PAGE显示某个类别。这个特定的页面是“想法和想法”
我想写一些关于我的想法和想法的文章,并在其下面显示名为“思想”的ID 16的CATEGORY
我该怎么办?
这是我的主题category.php:
<?php get_header(); ?>
<div id="wrap">
<!-- Main Content-->
<img src="<?php bloginfo('template_directory');?>/images/content-top.gif" alt="content top" class="content-wrap" />
<div id="content">
<!-- Start Main Window -->
<div id="main">
<?php global $query_string; $catnum_posts = get_option('theme_catnum_posts') ;
query_posts($query_string . "&showposts=$catnum_posts&paged=$paged&cat=$cat"); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php include(TEMPLATEPATH . '/includes/entry.php'); ?>
<?php endwhile; ?>
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); }
else { ?>
<?php include(TEMPLATEPATH . '/includes/navigation.php'); ?>
<?php } ?>
<?php else : ?>
<?php include(TEMPLATEPATH . '/includes/no-results.php'); ?>
<?php endif; wp_reset_query(); ?>
</div>
<!-- End Main -->
<?php get_sidebar(); ?>
我试图改变:
query_posts($query_string . "&showposts=$catnum_posts&paged=$paged&cat=$cat"); ?>
到
query_posts($query_string . "&showposts=$catnum_posts&paged=$paged&cat=16"); ?>
然而它没有用..
有什么想法吗?
答案 0 :(得分:0)
类别页面上的全局$query_string
几乎肯定已经定义了cat
参数,这可能是它忽略cat=16
的原因。我也会按照Kai的建议并致电query_posts
来做一个新的wp_reset_query
。试试这个循环:
<?php $catnum_posts = get_option('theme_catnum_posts') ;
wp_reset_query();
$cat = 16;
query_posts("&showposts=$catnum_posts&paged=$paged&cat=$cat"); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php include(TEMPLATEPATH . '/includes/entry.php'); ?>
<?php endwhile; ?>