返回介绍

next_post()

发布于 2017-09-11 09:51:05 字数 2491 浏览 1101 评论 0 收藏 0

Warning: This function has been deprecated. Use next_post_link() instead.

next_post( string $format = '%',  string $next = 'next post: ',  string $title = 'yes',  string $in_same_cat = 'no',  int $limitnext = 1,  string $excluded_categories = '' )

Prints link to the next post.


description


参数

$format

(string) (Optional)

Default value: '%'

$next

(string) (Optional)

Default value: 'next post: '

$title

(string) (Optional)

Default value: 'yes'

$in_same_cat

(string) (Optional)

Default value: 'no'

$limitnext

(int) (Optional)

Default value: 1

$excluded_categories

(string) (Optional)

Default value: ''


源代码

File: wp-includes/deprecated.php

function next_post($format='%', $next='next post: ', $title='yes', $in_same_cat='no', $limitnext=1, $excluded_categories='') {
	_deprecated_function( __FUNCTION__, '2.0.0', 'next_post_link()' );

	if ( empty($in_same_cat) || 'no' == $in_same_cat )
		$in_same_cat = false;
	else
		$in_same_cat = true;

	$post = get_next_post($in_same_cat, $excluded_categories);

	if ( !$post	)
		return;

	$string = '<a href="'.get_permalink($post->ID).'">'.$next;
	if ( 'yes' == $title )
		$string .= apply_filters('the_title', $post->post_title, $post->ID);
	$string .= '</a>';
	$format = str_replace('%', $string, $format);
	echo $format;
}

更新日志

Versiondescription
2.0.0Use next_post_link()
0.71Introduced.

相关函数

Uses

  • wp-includes/functions.php: _deprecated_function()
  • wp-includes/link-template.php: get_next_post()
  • wp-includes/link-template.php: get_permalink()
  • wp-includes/plugin.php: apply_filters()
  • wp-includes/post-template.php: the_title

User Contributed Notes

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

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

发布评论

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