Definition:
function post_thumbnail_meta_box() {}
Display post thumbnail meta box.
Source code
function post_thumbnail_meta_box() {
global $post;
$thumbnail_id = get_post_meta( $post->ID, '_thumbnail_id', true );
echo _wp_post_thumbnail_html( $thumbnail_id );
}
2591

February 12, 2011 


No comments yet... Be the first to leave a reply!