WordPress分类归档上一页标签:previous_posts_link

2022/07/13

WordPress模板标签previous_posts_link用于在分类、标签、日期等归档页输出上一页链接,需要注意是用在The Loop主循环之外。

previous_posts_link( string $label = null )

本文涉及的内容包括:

函数参数

$label

字符串值,默认值:null

链接的锚文本,默认输出 « 上一页

函数使用示例

<?php 
	while ( have_posts() ) : the_post();
		the_title();
	endif;
	previous_posts_link();
?>

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注