delete_post_thumbnail( int|WP_Post $post ): bool

Removes the thumbnail (featured image) from the given post.


Parameters

$post int|WP_Post Required
Post ID or post object from which the thumbnail should be removed.

Top ↑

Return

bool True on success, false on failure.


Top ↑

Source

File: wp-includes/post.php. View all references

function delete_post_thumbnail( $post ) {
	$post = get_post( $post );
	if ( $post ) {
		return delete_post_meta( $post->ID, '_thumbnail_id' );
	}
	return false;
}


Top ↑

Changelog

Changelog
Version Description
3.3.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.