WordPress判断文章是否设置了特色图像函数:has_post_thumbnail - 利剑分享-科技生活-利剑分享-科技生活
利剑分享-科技生活-利剑分享-科技生活
利剑分享-科技生活

WordPress判断文章是否设置了特色图像函数:has_post_thumbnail

WordPress判断文章是否设置了特色图像函数:has_post_thumbnail

WordPress函数has_post_thumbnail用于判断当前文章是否设置了特色图像,即是否包含缩略图。

has_post_thumbnail( int|WP_Post $post = null )

函数参数

$post

整数或对象,默认值:null

文章ID或文章对象,在The Loop循环中不需要传递参数。

函数使用示例

以下示例在当前文章有设置特色图像时,输出相应的缩略图,如果没有设置就输出默认缩略图。

if ( has_post_thumbnail() ) {    the_post_thumbnail();} else {    echo '<img src="' . get_bloginfo( 'stylesheet_directory' ) . '/images/thumbnail-default.jpg" />';}

扩展阅读

has_post_thumbnail()函数位于:wp-includes/post-thumbnail-template.php

相关函数:

  • get_post_thumbnail_id()
  • the_post_thumbnail()
  • get_the_post_thumbnail()

© 版权声明
THE END
喜欢就支持一下吧
点赞7 分享