向WordPress添加自定义图像大小

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了向WordPress添加自定义图像大小相关的知识,希望对你有一定的参考价值。

- Use custom image size within template (including if exist)
- Add a class name to a custom image size
  1. // Add Feature Image size, hard crop
  2. if ( function_exists( 'add_image_size' ) ) {
  3. add_image_size( 'feature-image', 570, 285, true );
  4. add_image_size( 'feature-image-small', 285, 285, true);
  5. add_image_size( 'feature-image-home', 285, 303, true);
  6. }
  7.  
  8. // To use the image, if feature image exist
  9. <?php if ( has_post_thumbnail() ) { the_post_thumbnail( 'feature-image' ); } ?>
  10.  
  11. // Add a class to the image
  12. <?php echo the_post_thumbnail( 'feature-image-large', array('class' => 'feature-image') ); ?>

以上是关于向WordPress添加自定义图像大小的主要内容,如果未能解决你的问题,请参考以下文章

高级自定义字段 wordpress 图像大小

在可视化编辑器 wordpress 中单击图像时添加自定义按钮

自定义对话框片段

在 WordPress 中以编程方式将文件上传给用户

php WordPress - 自定义图像大小

php 自定义图像大小wordpress - tamanhos personalizados