您可以使用“特色图像”将图像附加到每篇文章,方法是首先使用add_theme_support(\'post-thumbnails\'), 和get_the_post_thumbnail() 显示图像。
例如,要列出4篇评论最多的帖子及其特色图片和标题,可以执行以下操作:
$posts = get_posts(
array(
\'posts_per_page\' => 4,
\'order_by\' => \'comment_count\'
)
);
foreach ($posts as $post) {
get_the_post_thumbnail($post->ID)
echo $post->post_title;
}
阅读关于
WP_Query 有关更多查询选项。要获得更高级的测量,您可能需要查看插件。