使用query_posts后,评论模板未显示(Wordpress)

时间:2011-01-18 05:55:41

标签: wordpress

以下内容告诉Wordpress显示所有类别博客

的帖子

评论模板包含在底部,但在apge渲染时不会显示。

有什么建议吗?

home.php:

<?php
/**
 * Template Name: Blog
 * @package WordPress
 * @subpackage Twenty_Ten
 * @since Twenty Ten 1.0
 */
 get_header(); ?>
 <div id="main-content">
  <?php query_posts('category_name=Blog&showposts=10'); ?>
  <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
   <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    <?php if ( is_front_page() ) { ?>
     <h2 class="entry-title"><?php the_title(); ?></h2>
    <?php } else { ?>
     <h1 class="entry-title"><?php the_title(); ?></h1>
    <?php } ?>
    <div class="entry-content">
     <?php the_content(); ?>
     <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
     <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
    </div><!-- .entry-content -->
   </div><!-- #post-## -->
   <?php comments_template( '', true ); ?>
  <?php endwhile; ?>
 </div><!-- #main-content -->
 <?php get_footer(); ?>

2 个答案:

答案 0 :(得分:0)

我认为问题在于您尝试以循环方式使用comments_template(); - 它仅适用于单个帖子或页面模板。

请参阅:http://codex.wordpress.org/Function_Reference/comments_template 引用:“描述 - 加载评论模板。用于单个帖子和页面显示。”

答案 1 :(得分:0)

如果有人想知道如何http://wordpress.org/support/topic/using-comments_template-outside-of-singlephp

<?php
$withcomments = 1;
comments_template(); ?>