我正在尝试修改“显示随机帖子”插件。在下面的代码中,我希望输出显示中显示带有特征图像的帖子列表及其下方的帖子标题。当前,此代码仅显示前端的特征图像。如何在图片下方添加帖子标题?
$string .= \'<ul>\';
while ( $the_query->have_posts() ) {
$the_query->the_post();
$string .= \'<li><a href="\'. get_permalink() .\'">\'. get_the_post_thumbnail() .\'</a></li>\';
}
$string .= \'</ul>\';