我正在使用以下代码将所有图片网址附加到帖子中。
global $post;
$thumbnail_ID = get_post_thumbnail_id();
$images = get_children( array('post_parent' => $post_id, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID') );
if ($images) :
foreach ($images as $attachment_id => $image) :
$img_alt = get_post_meta($attachment_id, '_wp_attachment_image_alt', true); //alt
if ($img_alt == '') : $img_alt = $image->post_title; endif;
$big_array = image_downsize( $image->ID, 'large' );
$img_url = $big_array[0];
endforeach; endif; }
我得到的输出是这样的:
https://www.example.com/wp-content/uploads/2019/01/image.gif
我需要找到的是此图像的附件页面URL,将是这样的 https://www.example.com/post-name/image-22
我尝试使用wp_get_attachment_image,但是输出不是我所需要的。
知道我该怎么做吗?