您可以使用get_posts
从数据库中提取附件。下面是一些示例代码,可以帮助您开始使用。您可以将其放在主题中的任何模板文件中。
$attachments = get_posts( array(
\'post_type\' => \'attachment\',
\'posts_per_page\' => -1 /* get them all */
) );
if ( $attachments ) {
foreach ( $attachments as $att ) {
$url = wp_get_attachment_url($att->ID);
echo $url;
}
}
查看链接以获取更多可用于设置查询形状的参数。