php 如何在hp中调整图像大小

e0uiprwp  于 2022-12-21  发布在  PHP
关注(0)|答案(1)|浏览(150)

我正在尝试调整这个链接中的图像大小我尝试了此代码,但它不工作

<a  href="<?php echo esc_url( $image_popup_url ); ?>" class="image-popup"><?php echo 'height="130" width="150"'. the_post_thumbnail( 'colormag-featured-image' ); ?></a>
gfttwv5a

gfttwv5a1#

设置主题功能后,在functions.php文件中使用add_image_size( 'colormag-featured-image', 150, 130, true );
然后使用这样的代码-

<a  href="<?php echo esc_url( $image_popup_url ); ?>" class="image-popup"><?php the_post_thumbnail( 'colormag-featured-image' ); ?></a>

会成功的。

相关问题