Make WordPress Core


Ignore:
Timestamp:
12/10/2009 06:14:36 AM (15 years ago)
Author:
markjaquith
Message:

Post/Page Image was too generic a name. Post/Page Thumbnail is more clear, even if you can create very large thumbnail images if you so choose.

File:
1 edited

Legend:

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

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