wp_get_archives函数可以让是实现年度归档、月度归档、周归档、日归档等等,配合 Limit 使用限定显示数量,甚至可以制作网站地图!wp_get_archives()可用在模板中的任何位置。
用法
<?PHP wp_get_archives( $args ); ?>
默认设置
<?PHP $args = array(
'type' => 'monthly',
'limit' => '',
'format' => 'html',
'before' => '',
'after' => '',
'show_post_count' => false,
'echo' => 1,
'order' => 'DESC'
);
wp_get_archives( $args ); ?>
◆ 显示所有档案(不限数字)
◆ 依次在HTML列表显示档案
参数
type
(字符串) 显示列表的类型。默认的wordpress设置。有效值:
■ yearly
■ monthly – 默认值
■ daily
■ weekly
■ postbypost (按照发布时期排序)
■ alpha (例如 postbypost 但是文章按照文章标题排序)
limit
format
◆ (字符串) 文章的列表格式。有效值:
◆ html – 在HTML的列表中
<li>
◆ option – 在选项
<select>
<option>
◆ link – 内链
<link>
标签中。
◆ custom – 自定义列表使用前后字符串。
before
(字符串) 在使用该链接时文本到地方 html 或者 custom 格式选项。没有默认值。
after
(字符串) 在使用该链接时文本到地方 html 或者 custom 格式选项。没有默认值。
show_post_count
(布尔值) 是否在列表中显示的文章的数目。除了使用所有类型 ‘postbypost’.
■ 1 (True)
■ 0 (False) – 默认值
echo
(布尔值) 返回值是否直接显示在网页中。
◆ 1 (True) – 默认值
◆ 0 (False)
order
(string) 如何排列查询到的文章 (since Version 3.5)
■ ASC – 升序排列 (A-Z).
■ DESC – 降序排列 (Z-A) – 默认值
wp_get_archives调用实例:
1、以月归档方式显示十二个月的归档
<?PHP wp_get_archives( array( 'type' => 'monthly','limit' => 12 ) ); ?>
2、过去十六天
<?PHP wp_get_archives( array( 'type' => 'daily','limit' => 16) ); ?>
3、最后二十个文章
<?PHP wp_get_archives( array( 'type' => 'postbypost','limit' => 20,'format' => 'custom' ) ); ?>
4、下拉框
<select name="archive-dropdown" onchange="document.location.href=this.options[this.selectedindex].value;">
<option value=""><?PHP echo esc_attr( __( 'Select Month' ) ); ?></option>
<?PHP wp_get_archives( array( 'type' => 'monthly','format' => 'option','show_post_count' => 1 ) ); ?>
</select>
显示所有文章按标题方式排列显示所有日志,特别是如果你想有一个日志档案,就像一个sitemap。
<?PHP wp_get_archives('type=alpha'); ?>
源文件
wp_get_archives() is located in wp-includes/general-template.PHP.
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。