0

我试图让一个页面显示某个类别。这个特定的页面是“想法和想法”

我想写几行关于我的想法和想法,并在其下显示 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"); ?>

然而它没有工作..

有任何想法吗?

4

1 回答 1

0

类别页面上的 global$query_string几乎可以肯定已经定义了cat参数,这可能是它忽略您的cat=16. 我也会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; ?>
于 2012-11-27T02:38:54.873 回答