set_post_thumbnail

函数
set_post_thumbnail ( $post, $thumbnail_id )
参数
  • (int|WP_Post) $post Post ID or post object where thumbnail should be attached.
    Required:
  • (int) $thumbnail_id Thumbnail to attach.
    Required:
返回值
  • (int|bool) True on success, false on failure.
定义位置
相关方法
the_post_thumbnailhas_post_thumbnailset_post_thumbnail_sizedelete_post_thumbnailget_post_thumbnail_id
引入
3.1.0
弃用
-

set_post_thumbnail: 这是一个WordPress的函数,用于设置当前文章的缩略图(也称为特色图片)。它通常在文章编辑器中使用,以选择一个图片作为文章的缩略图: 这个函数有一个参数,就是要设置为文章缩略图的图片的ID。

为给定的文章设置文章缩略图(特色图片)。

function set_post_thumbnail( $post, $thumbnail_id ) {
	$post         = get_post( $post );
	$thumbnail_id = absint( $thumbnail_id );
	if ( $post && $thumbnail_id && get_post( $thumbnail_id ) ) {
		if ( wp_get_attachment_image( $thumbnail_id, 'thumbnail' ) ) {
			return update_post_meta( $post->ID, '_thumbnail_id', $thumbnail_id );
		} else {
			return delete_post_meta( $post->ID, '_thumbnail_id' );
		}
	}
	return false;
}

常见问题

FAQs
查看更多 >