首先,你需要create a custom page Template, 保存自定义循环输出。创建一个主题文件,名为。template-all-images.php
, 标题如下:
<?php
/**
* Template name: All Images
*/
?>
然后,在自定义页面模板中,需要查询所有图像附件。尝试使用
WP_Query()
, with post type/status arguments:
<?php
$images_query_args = array(
\'post_type\' => \'attachment\',
\'post_status\' => \'inherit\',
\'post_mime_type\' => \'image\'
);
$images_query = new WP_Query( $images_query_args );
?>
然后,输出查询:
<?php
if ( $images_query->have_posts() ) : while ( $images_query->have_posts() ) : $images_query->the_post();
// Normal loop output goes here
endwhile; endif;
// Be kind; rewind
wp_reset_postdata();
?>
对于循环输出,如果您只想输出完全成形的图像,可以使用。
wp_get_attachment_image()
:
<?php
wp_get_attachment_image( get_the_ID(), \'large\' );
?>
(更换
\'large\'
使用所需的图像大小,或忽略以使用默认大小,
\'thumbnail\'
.)
整个自定义页面模板文件可能如下所示:
<?php
/**
* Template name: All Images
*/
// Get the header
get_header();
// Image attachment query arguments
$images_query_args = array(
\'post_type\' => \'attachment\',
\'post_status\' => \'inherit\',
\'post_mime_type\' => \'image\'
);
// Query image attachments
$images_query = new WP_Query( $images_query_args );
// Image attachment query loop
if ( $images_query->have_posts() ) : while ( $images_query->have_posts() ) : $images_query->the_post();
// Output the attachment image
wp_get_attachment_image( get_the_ID(), \'large\' );
endwhile; endif;
// Be kind; rewind
wp_reset_postdata();
// Get the footer
get_footer();
?>
使用自定义页面模板确保
template-all-images.php
已保存到
Theme directory 在下面
wp-content/themes/{theme-name}
.
在Page Attributes 元框中,将“所有图像”模板分配给页面,发布页面,编辑问题中包含的编辑。