wordpress 3.3.2hi。所以我有这个自定义的帖子类型,我使用一个页面来显示一篇帖子。url。td/页/
页面呈现文章,但现在我想包括评论。如果我允许对页面进行评论,则会将评论分配给页面,但我希望将其分配给帖子,例如URL。td/页面/我的帖子
如果我不允许评论,则会隐藏评论表单。
这是我的页面
get_header(); ?>
<div id="primary">
<div id="content" role="main">
<?php
$args = array( \'post_type\' => \'charts\', \'posts_per_page\' => 1 );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
get_template_part( \'content\', \'charts\' );
endwhile;
?>
</div><!-- #content -->
</div><!-- #primary -->
<?php get_footer(); ?>
下面是我的内容图表。php
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
lots of stuff here...
<?php
wp_reset_query();
comments_template( \'\', true );
?>
</article><!-- #post-<?php the_ID(); ?> -->
所以我想,如果评论表在帖子内,它将与之相关,但它不是。。