将评论部分添加到网站集成的WordPress实例 时间:2014-07-28 作者:vovafeldman 我们已经将一个WP实例集成到我们的网站中,我想知道如何将评论模板呈现到页面中。我试着简单地添加: comments_template( \'\', true ); 但它似乎不起作用(也没有显示错误)。我想我们缺少了一些include和init。任何帮助都将不胜感激。 1 个回复 SO网友:markratledge 可以简单到使用模板文件中的完整功能:<?php comments_template( \'\', true ); ?>确保您有评论。主题文件夹中的php文件。并确保使用完整循环:<?php require(\'/the/path/to/your/wp-blog-header.php\'); ?> <?php $posts = get_posts(\'numberposts=10&order=ASC&orderby=post_title\'); foreach ($posts as $post) : setup_postdata( $post ); ?> <?php the_date(); echo "<br />"; ?> <?php the_title(); ?> <?php the_content(); ?> <?php comments_template( \'\', true ); ?> <?php endforeach; ?> See Integrating WordPress with Your Website « WordPress Codex 结束 文章导航