我一直在努力检索特定帖子的图像附件,但没有成功,直到我发现通过媒体库插入帖子的图像没有被视为附件。也就是说,您应该首先将图像上载到媒体库(即使它们已经存在),然后插入帖子。然后将其视为附件,并可使用以下代码检索:
?php
$args = array( \'post_type\' => \'attachment\', \'posts_per_page\' => -1, \'post_status\' =>\'any\', \'post_parent\' => $post->ID );
$attachments = get_posts( $args );
if ( $attachments ) {
foreach ( $attachments as $attachment ) {
echo apply_filters( \'the_title\' , $attachment->post_title );
the_attachment_link( $attachment->ID , false );
}
}
?>
我认为这就是附件的问题。但是,我的问题是,如何通过媒体库检索插入帖子的图像,而不是每次都上载图像?
谢谢