Make WordPress Core


Ignore:
Timestamp:
03/23/2014 02:34:39 AM (11 years ago)
Author:
wonderboymusic
Message:

Turn on thumbnail support for attachment:audio and attachment:video. Change conditionals to check for theme OR post type support when determining whether to turn on the Featured Image UI pieces in the admin.

Fixes #27460.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/edit-form-advanced.php

    r27469 r27657  
    2525$action = isset($action) ? $action : '';
    2626
    27 $media_type = false;
    28 if ( 'attachment' === $post_type && $post_ID ) {
    29     $post = get_post( $post_ID );
    30     $media_type = post_supports_thumbnails( $post );
    31 }
    32 
    33 if ( post_type_supports( $post_type, 'editor' ) || post_type_supports( $post_type, 'thumbnail' ) || $media_type ) {
     27$media_support = theme_supports_thumbnails( $post ) || post_supports_thumbnails( $post );
     28
     29if ( post_type_supports( $post_type, 'editor' ) || post_type_supports( $post_type, 'thumbnail' ) || $media_support ) {
    3430    add_thickbox();
    3531    wp_enqueue_media( array( 'post' => $post_ID ) );
     
    170166    add_meta_box('pageparentdiv', 'page' == $post_type ? __('Page Attributes') : __('Attributes'), 'page_attributes_meta_box', null, 'side', 'core');
    171167
    172 $audio_post_support = $video_post_support = false;
    173 $theme_support = current_theme_supports( 'post-thumbnails', $post_type ) && post_type_supports( $post_type, 'thumbnail' );
    174 if ( 'attachment' === $post_type && ! empty( $post->post_mime_type ) ) {
    175     $audio_post_support = 0 === strpos( $post->post_mime_type, 'audio/' ) && current_theme_supports( 'post-thumbnails', 'attachment:audio' ) && post_type_supports( 'attachment:audio', 'thumbnail' );
    176     $video_post_support = 0 === strpos( $post->post_mime_type, 'video/' ) && current_theme_supports( 'post-thumbnails', 'attachment:video' ) && post_type_supports( 'attachment:video', 'thumbnail' );
    177 }
    178 
    179 if ( $theme_support || $audio_post_support || $video_post_support )
     168if ( current_theme_supports( 'post-thumbnails', $post_type ) || post_supports_thumbnails( $post ) )
    180169    add_meta_box('postimagediv', __('Featured Image'), 'post_thumbnail_meta_box', null, 'side', 'low');
    181170
Note: See TracChangeset for help on using the changeset viewer.