我已经安装了一个插件,可以在小部件中插入PHP代码——基本上,我想做的是创建一个“最近的帖子”区域,在那里你可以看到帖子的封面(特色图片的缩略图)、标题和评论数。
到目前为止,我成功地创建了一个工作正常的代码——去掉了注释。我看了一些不同的东西,比如get\\u comments\\u number、comments\\u number、wp\\u count\\u comments,但到目前为止,我还不能做到这一点。
以下是当前代码:
<?php
$recent_posts = wp_get_recent_posts(array(\'numberposts\' => 3));
?>
<ul>
<?php foreach($recent_posts as $post) : ?>
<li>
<a href="<?php echo get_permalink($post[\'ID\']) ?>">
<?php echo get_the_post_thumbnail($post[\'ID\'], \'thumbnail\'); ?>
<?php echo $post[\'post_title\'] ?>
</a> - //here I want to show the number of comments
</li>
<?php endforeach; ?>
</ul>
编辑:我自己做的:D不知何故,我的PHP停止了保存,在多次尝试后,我设法找到了一种方法。添加了以下内容,似乎有效:
<?php echo get_comments_number($post[\'ID\']); ?>