wpseek.com
A WordPress-centric search engine for devs and theme authors



set_post_thumbnail › WordPress Function

Since3.1.0
Deprecatedn/a
set_post_thumbnail ( $post, $thumbnail_id )
Parameters: (2)
  • (int|WP_Post) $post Post ID or post object where thumbnail should be attached.
    Required: Yes
  • (int) $thumbnail_id Thumbnail to attach.
    Required: Yes
Returns:
  • (int|bool) Post meta ID if the key didn't exist (ie. this is the first time that a thumbnail has been saved for the post), true on successful update, false on failure or if the value passed is the same as the one that is already in the database.
Defined at:
Codex:

Sets the post thumbnail (featured image) for the given post.



Source

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;
}