我正在使用下面的代码获取帖子的特色图片URL。我需要能够得到large
大小图像,现在它正在获取原始大小图像的URL。
<?php $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID, \'ttrust_post_thumb_big\'), array( 5600,1000 ), false, \'\' );?>
<a href="<?php the_permalink() ?>" rel="bookmark" class="imagewrap"><div style="background: url(<?php echo $src[0]; ?> ) !important;"></div></a>