Make WordPress Core


Ignore:
Timestamp:
12/08/2009 09:24:32 PM (16 years ago)
Author:
markjaquith
Message:

More standardization around Post/Page Image instead of Post/Page Thumbnail

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/meta-boxes.php

    r12330 r12343  
    816816
    817817/**
    818  * Display post thumbnail meta box.
     818 * Display post image meta box.
    819819 *
    820820 * @since 2.9.0
    821821 */
    822 function post_thumbnail_meta_box() {
     822function post_image_meta_box() {
    823823    global $post;
    824824    $thumbnail_id = get_post_meta( $post->ID, '_thumbnail_id', true );
    825     echo _wp_post_thumbnail_html( $thumbnail_id );
    826 }
     825    echo _wp_post_image_html( $thumbnail_id );
     826}
Note: See TracChangeset for help on using the changeset viewer.