나와 함께 미디어 업로드 팝업 페이지에서 기본적으로 사용자 정의 이미지 크기를 선택하고 싶습니다. 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