向WordPress添加自定义图像大小
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了向WordPress添加自定义图像大小相关的知识,希望对你有一定的参考价值。
- Use custom image size within template (including if exist)- Add a class name to a custom image size
// Add Feature Image size, hard crop if ( function_exists( 'add_image_size' ) ) { add_image_size( 'feature-image', 570, 285, true ); add_image_size( 'feature-image-small', 285, 285, true); add_image_size( 'feature-image-home', 285, 303, true); } // To use the image, if feature image exist // Add a class to the image
以上是关于向WordPress添加自定义图像大小的主要内容,如果未能解决你的问题,请参考以下文章