delete_post_thumbnail

Definition:
function delete_post_thumbnail( $post ) {}

Removes a post thumbnail.

Parameters

  • int|object $post: Post ID or object where thumbnail should be removed from.

Return values

returns:True on success, false on failure.

Source code

function delete_post_thumbnail( $post ) {

	$post = get_post( $post );

	if ( $post )

		return delete_post_meta( $post->ID, '_thumbnail_id' );

	return false;

}

15972

No comments yet... Be the first to leave a reply!

Leave a comment