wordpress / latest / functions / delete_post_thumbnail.html

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.

Return

bool True on success, false on failure.

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

Uses

Uses Description

Used By

Used By Description

Changelog

Version Description
3.3.0 Introduced.

© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/delete_post_thumbnail