法典有时是有效的来源The Codex 是不是错了。。。
显示当前帖子的附件这是一个稍微修改过的例子。
<?php
// Do this inside The Loop (where $post->ID is available).
global $post;
$args = array(
\'post_type\' => \'attachment\'
,\'numberposts\' => 1
,\'post_status\' => null
,\'post_parent\' => $post->ID
,\'orderby\' => \'ID\'
,\'order\' => \'ASC\'
);
$attachments = get_posts( $args );
if ( $attachments )
{
foreach ( $attachments as $attachment )
{
echo apply_filters( \'the_title\' , $attachment->post_title );
the_attachment_link( $attachment->ID , false );
}
}
?>
智能化-使用系统背后的系统对Codex示例的更改很简单:
numberposts
设置为1时
orderby
值是
ID
它正在排序
ASC
首先获得ID最低的帖子。
这就是为什么这很聪明的原因:ID是一个接一个地给出的,所以第一篇上传的帖子的ID是最低的。
在上面的示例中,只需将最后一个函数与wp_get_attachment_link()
并将其保存在某个var中,以便以后重用。