Make WordPress Core


Ignore:
Timestamp:
09/24/2011 07:31:38 PM (13 years ago)
Author:
nacin
Message:

delete_post_thumbnail(). props CoenJacobs, duck_. fixes #17895.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/post.php

    r18753 r18767  
    51925192
    51935193/**
     5194 * Removes a post thumbnail.
     5195 *
     5196 * @since 3.3.0
     5197 *
     5198 * @param int|object $post Post ID or object where thumbnail should be removed from.
     5199 * @return bool True on success, false on failure.
     5200 */
     5201function delete_post_thumbnail( $post ) {
     5202    $post = get_post( $post );
     5203    if ( $post )
     5204        return delete_post_meta( $post->ID, '_thumbnail_id' );
     5205    return false;
     5206}
     5207
     5208/**
    51945209 * Returns a link to a post format index.
    51955210 *
Note: See TracChangeset for help on using the changeset viewer.