如何在WordPress中的媒体中添加更多图像尺寸?

时间:2014-12-03 12:10:33

标签: wordpress media

我希望大小在WordPress媒体中添加更多图片大小。我想在特定大小的页面中插入图像。

我也在添加图片大小,但它没有用。

add_image_size('cpm_gallery', 450, 400 ,true);

我该怎么做?

见附件:

enter image description here

2 个答案:

答案 0 :(得分:1)

add_filter( 'image_size_names_choose', 'my_custom_sizes' );

function my_custom_sizes( $sizes ) {
    return array_merge( $sizes, array(
        'your-custom-size' => __( 'Your Custom Size Name' ),
    ) );
}

尝试上面的代码,应该为您提供所需的结果。

答案 1 :(得分:1)

打开主题' functions.php并在你的add_image_size代码之前使用' add_theme_support('缩略图后')检查你,

参见示例:

add_theme_support('post-thumbnails');
set_post_thumbnail_size(700, 400, true);
add_image_size( 'portfolio-thumb', 360, 225, true);
add_image_size( 'latest-post', 400, 200, true);

这是我在网站上使用的代码,因此它应该可以使用。如果没有,还有另一个问题。

此外,如果您想要调整已上传的媒体的大小,则需要重新生成缩略图,请参阅此插件:https://wordpress.org/plugins/regenerate-thumbnails/