您可以使用wp\\u get\\u attachment\\u image\\u src。下面是它的小功能。
function get_image_src( $post_id = \'\', $size_img = \'thumbnail\' ) {
if ( $post_id == \'\' ) {
return false;
} else {
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post_id ), $size_img );
$image = $image[0];
if( !$image ) {
return false;
}
}
return $image;
}
echo get_image_src(get_the_ID(), \'full\'); //full size to get original image src
这里get\\u the\\u ID()是循环中的post ID。