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

2022/07/13

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" />';
}

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注