您好,我想知道是否有办法将帖子上的评论内容从wordpress拉到单独的页面。目前,这就是我所拥有的,我想用一个函数来代替它来拉评论,而不是拉评论的链接。
<?php
// Include Wordpress
define(\'WP_USE_THEMES\', false);
require(\'./blog/wp-load.php\');
?>
<div>
<p style="font-size:18px;color:white;font-wieght:700;">Recently Asked Questions</p>
<?php query_posts(\'showposts=3\'); ?>
<?php while (have_posts()): the_post(); ?>
<div id="faq">
<a href="<?php the_permalink() ?>"><?php the_title() ?></a><br />
<?php the_time(\'F jS, Y\') ?>
<?php the_excerpt(); ?>
<?php comments_popup_link(); ?>
To see the answer to the question click <a href="<?php the_permalink() ?>">here</a>.<br /><br />
</div>
<?php endwhile; ?>
</div>
非常感谢您的帮助,谢谢。