我也在寻找一种方法来更改自定义帖子类型的特征图像大小,即使是在管理员中,这样在插入图像时,您也可以进行正确的预览。这段代码会起到一定的作用,希望这能对其他人有所帮助。
将代码放入函数中。您的子主题的php。请记住,您的主题必须支持帖子缩略图。
// Change Featured Image Size for Custom Post Type
function custom_post_type_featured_image_size() {
add_post_type_support( \'your_custom_post_type\', \'thumbnail\' );
set_post_thumbnail_size( width, height, true ); //true will crop image
}
add_action( \'init\', \'custom_post_type_featured_image_size\' );