我试图让一个页面显示某个类别。这个特定的页面是“想法和想法”
我想写几行关于我的想法和想法,并在其下显示 ID 为 16 的 CATEGORY,名为“Thoughts”
我该怎么办?
这是我的主题 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"); ?>
然而它没有工作..
有任何想法吗?