Changeset 12351 for trunk/wp-admin/includes/media.php
- Timestamp:
- 12/10/2009 06:14:36 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/media.php
r12350 r12351 1240 1240 1241 1241 $thumbnail = ''; 1242 if ( 'image' == $type && isset($_GET['post_id']) && current_theme_supports( 'post- images', get_post_type($_GET['post_id']) ) && get_post_image_id($_GET['post_id']) != $attachment_id )1243 $thumbnail = "<a class='wp-post-thumbnail' href='#' onclick='WPSetAsThumbnail(\"$attachment_id\");return false;'>" . esc_html__( "Use as post image" ) . "</a>";1242 if ( 'image' == $type && isset($_GET['post_id']) && current_theme_supports( 'post-thumbnails', get_post_type($_GET['post_id']) ) && get_post_thumbnail_id($_GET['post_id']) != $attachment_id ) 1243 $thumbnail = "<a class='wp-post-thumbnail' href='#' onclick='WPSetAsThumbnail(\"$attachment_id\");return false;'>" . esc_html__( "Use as thumbnail" ) . "</a>"; 1244 1244 1245 1245 if ( ( $send || $thumbnail || $delete ) && !isset($form_fields['buttons']) )
Note: See TracChangeset
for help on using the changeset viewer.