返回介绍

get_posts_nav_link()

发布于 2017-09-10 23:49:17 字数 2568 浏览 918 评论 0 收藏 0

get_posts_nav_link( string|array $args = array() )

Retrieves the post pages link navigation for previous and next pages.


description


参数

$args

(string|array) (Optional) Arguments to build the post pages link navigation.

  • 'sep'
    (string) Separator character. Default '—'.
  • 'prelabel'
    (string) Link text to display for the previous page link. Default '« Previous Page'.
  • 'nxtlabel'
    (string) Link text to display for the next page link. Default 'Next Page »'.

Default value: array()


返回值

(string) The posts link navigation.


源代码

File: wp-includes/link-template.php

function get_posts_nav_link( $args = array() ) {
	global $wp_query;

	$return = '';

	if ( !is_singular() ) {
		$defaults = array(
			'sep' => ' — ',
			'prelabel' => __('« Previous Page'),
			'nxtlabel' => __('Next Page »'),
		);
		$args = wp_parse_args( $args, $defaults );

		$max_num_pages = $wp_query->max_num_pages;
		$paged = get_query_var('paged');

		//only have sep if there's both prev and next results
		if ($paged < 2 || $paged >= $max_num_pages) {
			$args['sep'] = '';
		}

		if ( $max_num_pages > 1 ) {
			$return = get_previous_posts_link($args['prelabel']);
			$return .= preg_replace('/&([^#])(?![a-z]{1,8};)/i', '&$1', $args['sep']);
			$return .= get_next_posts_link($args['nxtlabel']);
		}
	}
	return $return;

}

更新日志

Versiondescription
2.8.0Introduced.

相关函数

Uses

  • wp-includes/l10n.php: __()
  • wp-includes/query.php: is_singular()
  • wp-includes/query.php: get_query_var()
  • wp-includes/functions.php: wp_parse_args()
  • wp-includes/link-template.php: get_previous_posts_link()
  • wp-includes/link-template.php: get_next_posts_link()
  • Show 1 more use Hide more uses

Used By

  • wp-includes/link-template.php: posts_nav_link()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文