在我正在构建的 wordress 网站上,我第一次尝试添加自定义循环。
<?php
$custom_loop = new WP_Query('showposts=5&category_name=Featured&orderby=rand');
if ( $custom_loop->have_posts() ) :
echo '<ul>';
while ( $custom_loop->have_posts() ):
$custom_loop->the_post();
echo '<li><a href="' . get_permalink() . '">' . get_the_title() . '</a>
</li>';
endwhile;
wp_reset_query();
echo '</ul>';
endif;
?>
如何if ( has_post_thumbnail() ) {
the_post_thumbnail();}
在<li></li>
标签之间正确添加这一行?
我试过把它放进去,但它在网站上显示的就像普通的文字一样。