最后更新时间为 2019年10月12日
WordPress函数has_post_thumbnail用于判断当前文章是否设置了特色图像,即是否包含缩略图。
has_post_thumbnail( int|WP_Post $post = null )
函数参数
$post
整数或对象,默认值:null
文章ID或文章对象,在The Loop循环中不需要传递参数。
has_post_thumbnail()函数使用示例
以下示例在当前文章有设置特色图像时,输出相应的缩略图,如果没有设置就输出默认缩略图。
if ( has_post_thumbnail() ) { the_post_thumbnail(); } else { echo '<img src="' . get_bloginfo( 'stylesheet_directory' ) . '/images/thumbnail-default.jpg" />'; }