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 Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: