Changeset 36584 for trunk/src/wp-admin/includes/post.php
- Timestamp:
- 02/19/2016 03:09:51 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/post.php
r36543 r36584 1381 1381 $post = get_post( $post ); 1382 1382 $post_type_object = get_post_type_object( $post->post_type ); 1383 $set_thumbnail_link = '<p class="hide-if-no-js"><a href="%s" id="set-post-thumbnail" aria-describedby="set-post-thumbnail-desc"class="thickbox">%s</a></p>';1383 $set_thumbnail_link = '<p class="hide-if-no-js"><a href="%s" id="set-post-thumbnail"%s class="thickbox">%s</a></p>'; 1384 1384 $upload_iframe_src = get_upload_iframe_src( 'image', $post->ID ); 1385 1385 1386 1386 $content = sprintf( $set_thumbnail_link, 1387 1387 esc_url( $upload_iframe_src ), 1388 '', // Empty when there's no featured image set, `aria-describedby` attribute otherwise. 1388 1389 esc_html( $post_type_object->labels->set_featured_image ) 1389 1390 ); … … 1417 1418 $content = sprintf( $set_thumbnail_link, 1418 1419 esc_url( $upload_iframe_src ), 1420 ' aria-describedby="set-post-thumbnail-desc"', 1419 1421 $thumbnail_html 1420 1422 );
Note: See TracChangeset
for help on using the changeset viewer.