禁用响应式图像大小裁剪

时间:2020-05-20 作者:Por

我想我的问题可能与其他人相似。这是我的问题,我想remove generating wordpress responsive images 因为我以自己的方式完成了图像响应解决方案。所以,我不想在我的服务器上保存wordpress自动生成的图像。

当我在谷歌上搜索时,大多数都会显示如何从 tag at frontend.

1 个回复
SO网友:WebElaine

如果您的意思是只想将原始图像保存到服务器,而不想让WP自动生成其他大小,那么有一个功能可以删除其他大小:

<?php
function wpse_remove_image_sizes() {
    // Remove the WP Core "thumbnail" size
    remove_image_size( \'thumbnail\' );
    // Remove a custom image size with the slug "custom-size-name"
    remove_image_size( \'custom-size-name\' );
    // Add any other sizes you need to remove -
    // this will depend on your theme and plugins.
}
add_action(\'init\', \'wpse_remove_image_sizes\');
?>
请谨慎操作,因为许多主题和一些插件使用这些其他大小,尤其是缩略图。

相关推荐

有没有更简单的WP Media版本?

我正在开发一个插件,用户需要能够将图像(付款收据)上传到自定义用户字段。当时,我正在使用我在这里找到的代码Extra User Profile Field Upload File / Image 它正在发挥作用。问题是,我不想让WP Media显示很多东西,我只想让用户能够上传一幅图像,而不需要看到私人网站信息或媒体,也不需要创建类似图库的东西。如果你知道怎么做,请回答。非常感谢。