Medya yüklemesinde varsayılan olarak bir görüntü boyutu nasıl seçilir - WP v3.5


12

Benimle kal. Medya yükleme açılır penceresinde varsayılan olarak özel bir görüntü boyutunun seçilmesini istiyorum. Wordpress v3.4.2 ve öncesinde, bu zarif kod iyi çalıştı:

function my_insert_custom_image_sizes( $sizes ) {
    // get the custom image sizes
    global $_wp_additional_image_sizes;
    // if there are none, just return the built-in sizes
    if ( empty( $_wp_additional_image_sizes ) )
        return $sizes;

    // add all the custom sizes to the built-in sizes
    foreach ( $_wp_additional_image_sizes as $id => $data ) {
        // take the size ID (e.g., 'my-name'), replace hyphens with spaces,
        // and capitalise the first letter of each word
        if ( !isset($sizes[$id]) )
            $sizes[$id] = ucfirst( str_replace( '-', ' ', $id ) );
    }

    return $sizes;
}


// Which custom image size selected by default
function my_set_default_image_size () { 
     return 'custom-image-size-2';
}


function custom_image_setup () {
    add_theme_support( 'post-thumbnails' );
    add_image_size( 'custom-image-size-1', 160, 9999 ); //  columned
    add_image_size( 'custom-image-size-2', 300, 9999 ); //  medium
    add_image_size( 'custom-image-size-3', 578, 190, true ); //  cropped
    add_filter( 'image_size_names_choose', 'my_insert_custom_image_sizes' );
    add_filter( 'pre_option_image_default_size', 'my_set_default_image_size' );
}

add_action( 'after_setup_theme', 'custom_image_setup' );

Bu nedenle, my_insert_custom_image_sizesözel görüntüleri medya sayfasına ekler my_set_default_image_sizeve custom-image-size-2boyutu seçmelidir . Bu kod Wordpress 3.5 sürümüyle çalışmayı durdurdu. Bunu v3.5'te nasıl başarabileceğimi biliyor musunuz?


bu doğrudan sorunuzu cevaplamıyor ancak bir tür ilgili: stackoverflow.com/questions/13936080/…
janw

Yanıtlar:


2

Bunu deneyin. Kişisel add_filter () 's bir dönüş yoluyla mevcut seçeneği etkileyecek, ikinci argüman bir işlevdir:

function theme_default_image_size() {
    return 'custom-image-size-2';
}
add_filter( 'pre_option_image_default_size', 'theme_default_image_size' );

Ayrıca pre_update_option _ {$ option} filtresine bakabilir ve değeri bir kez güncelleyebilirsiniz, böylece bu filtreyi her seferinde çalıştırmanız gerekmez (0,01 sn kaydedebilir, ancak yine de kaydeder!) :)

veya eski iyi update_option () :

update_option( 'image_default_size', 'custom-image-size-2' );

0

İşlevi temanın function.php dosyasına ekleyin.

if ( function_exists( 'add_theme_support' ) ) {
    add_theme_support( 'post-thumbnails' );
        set_post_thumbnail_size( 150, 150 ); // default Post Thumbnail dimensions   
}


function custom_image_setup () {

        add_theme_support('post-thumbnails');
        set_post_thumbnail_size(640,320);

    add_image_size( 'custom-image-size-1', 180, 9999 ); //  columned
    add_image_size( 'custom-image-size-2', 350, 9999 ); //  medium
    add_image_size( 'custom-image-size-3', 600, 250, true ); //  cropped

    add_filter( 'image_size_names_choose', 'theme_custom_image_sizes' );
    add_filter( 'pre_option_image_default_size', 'theme_default_image_size' );
}


if ( function_exists( 'add_image_size' ) ) { 
    add_image_size( 'category-thumb', 300, 9999 ); //300 pixels wide (and unlimited height)
    add_image_size( 'homepage-thumb', 220, 180, true ); //(cropped)
}

Yeni Görüntü Boyutlarını Kullanma Bir temanın şablon dosyalarında.

if ( has_post_thumbnail() ) { the_post_thumbnail( 'category-thumb' ); }
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.