วิธีการเลือกขนาดภาพตามค่าเริ่มต้นในการอัปโหลดสื่อ - WP v3.5


12

เปลือยกับฉัน ฉันต้องการให้มีการเลือกขนาดภาพที่กำหนดเองตามค่าเริ่มต้นในหน้าป๊อปอัปอัปโหลดสื่อ ใน Wordpress v3.4.2 และก่อนหน้านี้โค้ดที่สวยงามนี้ทำงานได้ดี:

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' );

ดังนั้นmy_insert_custom_image_sizesเพิ่มภาพที่กำหนดเองไปยังหน้าสื่อและmy_set_default_image_sizeควรเลือกcustom-image-size-2ขนาด รหัสนี้หยุดทำงานกับรุ่น Wordpress 3.5 คุณรู้ไหมว่าฉันจะทำสิ่งนี้ได้สำเร็จใน v3.5


สิ่งนี้ไม่ได้ตอบคำถามของคุณโดยตรง แต่มีความเกี่ยวข้อง: stackoverflow.com/questions/13936080/…
janw

คำตอบ:


2

ลองใช้ดู อาร์กิวเมนต์ที่สองของคุณadd_filter ()คือฟังก์ชันที่จะส่งผลต่อตัวเลือกปัจจุบันผ่านการส่งคืน:

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

คุณสามารถดูตัวกรองpre_update_option _ {$ option}และอัปเดตค่าหนึ่งครั้งดังนั้นคุณไม่จำเป็นต้องเรียกใช้ตัวกรองนี้ทุกครั้ง (อาจประหยัด 0.01s แต่ยังคงประหยัด!) :)

หรือupdate_optionเก่าดี() :

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

0

เพิ่มฟังก์ชั่นให้กับไฟล์ functions.php ของธีม

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)
}

การใช้ขนาดรูปภาพใหม่ภายในไฟล์เทมเพลตของธีม

if ( has_post_thumbnail() ) { the_post_thumbnail( 'category-thumb' ); }
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.