我一直试图在代码中添加一个图像大小,以使图像的宽度达到708px。高度可以是可变的。我这样添加了代码:
add_image_size( \'full-blog-width\', 708 );
add_filter( \'image_size_names_choose\', \'my_custom_sizes\' );
function my_custom_sizes( $sizes ) {
return array_merge( $sizes, array(
\'full-blog-width\' => __( \'Full Blog Width\' ),
) );
}
然而,当我在媒体库中添加图像时,宽度似乎最大为474px,高度根据比例而变化。我尝试过硬裁剪,但这似乎只会影响最终的比例。据我所知,这个474数字来自于博客文章容器的宽度。媒体库是否为基于博客帖子CSS的图像设置了最大大小?有没有办法覆盖这个?
SO网友:Lacey Tech Solutions
尝试使用添加自定义图像大小after_setup_theme
钩住WordPress。
在我脑海中你会添加这样的内容functions.php
if(!function_exists(\'custom_after_theme_setup\')):
function custom_after_theme_setup(){
// your image size code here
}
add_action(\'after_theme_setup\', \'custom_after_theme_setup\');
endif;
法典:
after_setup_theme