我有一个名为books的CPT,我可以像这样循环浏览,但我需要将上传图像的URL放到帖子中(不在图库中)。我试着用WPwp_get_attachment_image_src()
就像贝娄一样,但我不知道我该怎么看$attachment_id
根据需要
<?php
$loop = new WP_Query(array(
\'post_type\' => \'books\',
\'tax_query\' => array(
array(
\'taxonomy\' => \'genre\',
\'field\' => \'slug\',
\'terms\' => \'romance\'
)
)
)
);
while ($loop->have_posts()):
$loop->the_post();
$image_attributes = wp_get_attachment_image_src(\'\', \'full\' );
if ( $image_attributes ) : ?>
<img src="<?php echo $image_attributes[0]; ?>" width="<?php echo $image_attributes[1]; ?>" height="<?php echo $image_attributes[2]; ?>" />
<?php endif;
endwhile;
wp_reset_query();
?>
显然,这不会返回上载到CPT URL的任何图像。你能告诉我我错过了什么,我做错了什么吗?