这段小代码为您提供了文章中的第一幅图像,如果它位于文章的库中,并且是!帖子库中的第一张图片。
$attachments = get_children( array(
\'post_parent\' => get_the_ID(),
\'post_type\' => \'attachment\',
\'numberposts\' => 1, // show all -1
\'post_status\' => \'inherit\',
\'post_mime_type\' => \'image\',
\'order\' => \'ASC\',
\'orderby\' => \'menu_order ASC\'
) );
foreach ( $attachments as $attachment_id => $attachment ) {
echo wp_get_attachment_image( $attachment_id );
}
玩弄
my post 关于这一可能性,你会找到最好的解决方案。