我正在尝试调整这个链接中的图像大小我尝试了此代码,但它不工作
<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>
gfttwv5a1#
设置主题功能后,在functions.php文件中使用add_image_size( 'colormag-featured-image', 150, 130, true );。然后使用这样的代码-
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>
会成功的。
1条答案
按热度按时间gfttwv5a1#
设置主题功能后,在
functions.php
文件中使用add_image_size( 'colormag-featured-image', 150, 130, true );
。然后使用这样的代码-
会成功的。