wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



set_post_thumbnail › WordPress Function

Depuis3.1.0
Dépréciéen/a
set_post_thumbnail ( $post, $thumbnail_id )
Paramètres: (2)
  • (int|WP_Post) $post Post ID or post object where thumbnail should be attached.
    Requis: Oui
  • (int) $thumbnail_id Thumbnail to attach.
    Requis: Oui
Retourne:
  • (int|bool) True on success, false on failure.
Défini(e) dans:
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;
}