时间:2024-03-14
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()
Copyright © 2019-2024 2543.cn