这个the_attachment_link
返回HTML链接,请使用以下代码:
if ( $attachments = get_children( array(
\'post_type\' => \'attachment\',
\'post_mime_type\' => \'image\',
\'numberposts\' => 1,
\'post_status\' => null,
\'post_parent\' => $post->ID
) ) );
foreach ( $attachments as $attachment ) {
echo wp_get_attachment_link(
$attachment->ID, \'\' , true, false, \'Link to image attachment\'
);
}
这里我将5个参数传递给函数
wp_get_attachment_link()
第一个参数是$attachment->ID
获取附件ID的第二个参数\'\'
表示不打印图像第三个参数true
第四页附件页链接false
参数指示不要打印媒体参数最后一个是要显示为链接的文本