WordPress:Template Tags/next post link

来自站长百科
Fludlen讨论 | 贡献2008年7月10日 (四) 11:28的版本
跳转至: 导航、​ 搜索

Description

描述

Used on single post permalink pages, this template tag displays a link to the next post which exists in chronological order from the current post.

这个模板标签用在一篇单一的文章permalink网页上,显示一个链接,链接到后一篇文章,后一篇文章指的是在发表时间在当前文章之后。

This tag must be used in WordPress:The Loop.

必须在The Loop内使用这个标签。

Usage

用法

%%% <?php next_post_link('format', 'link', in_same_cat,

                        'excluded_categories'); ?> %%%

%%% <?php next_post_link('format', 'link', in_same_cat,

                        'excluded_categories'); ?> %%%

Examples

用法

Default Usage

默认用法

Displays link with the post title of the next post (chronological post date order), followed by a right angular quote (»). By default, this tag works like WordPress:Next Post

显示后一篇文章的文章标题(按文章日期的时间顺序排列在后的一篇文章),紧跟着一个右angular quote («)。默认情况下,这个标签像后一篇文章一样运行。

[[WordPress:#Examples|Next Post Title »]]
<?php next_post_link(); ?>
[[WordPress:#Examples|后一篇文章标题»]]
<?php next_post_link(); ?>

Bold Post Title As Link

粗体的文章标题作为链接

Displays link with next chronological post's title wrapped in 'strong' tags (typically sets text to bold).

显示链接,将时间上较后的文章标题包裹在'strong'标签中(通常将文本设置为粗体的)。

[[WordPress:#Examples|Next Post Title]]

%%% <?php next_post_link('%link'); ?> %%%

[[WordPress:#Examples|下一篇文章标题]]

%%% <?php next_post_link('%link'); ?> %%%

Text As Link, Without Post Title, Within Same Category

文本作为链接,没有文章标题,在相同的类别中

Displays custom text as link to the next post within the same category as the current post. Post title is not included here. "Next post in category" is the custom text, which can be changed to fit your requirements.


显示自定义的文本作为链接,链接到与当前文章同类别的后一篇文章。不包含文章标题。"类别中的后一篇"是自定义文本,可以根据的你的需要更改。

[[WordPress:#Examples|Next post in category]]

<?php next_post_link('%link', 'Next post in category', TRUE); ?>

[[WordPress:#Examples|类别中的后一篇]]

<?php next_post_link('%link', 'Next post in category', TRUE); ?>

Within Same Category, Excluding One

在同一个类别中,一个类别除外

Displays link to next post in the same category, as long as it is not in category 13 (the category ID #). You can change the number to any category you wish to exclude. Exclude multiple categories by using " and " as a delimiter.

显示链接,链接到同一个类别中的后一篇文章,只要这篇文章不属于类别13(类别ID#)。你可以将数字改为任何你想要排除的类别。使用" and "作为分隔符可以删除多个类别。

[[WordPress:#Examples|Next post in category]]

<?php next_post_link('%link', 'Next post in category', TRUE, '13'); ?>

[[WordPress:#Examples|类别中的下一篇文章]]

<?php next_post_link('%link', 'Next post in category', TRUE, '13'); ?>

Parameters

参数

format
(string) Format string for the link. This is where to control what comes before and after the link. '%link' in string will be replaced with whatever is declared as 'link' (see next parameter). 'Go to %link' will generate "Go to <a href=..." Put HTML tags here to style the final results. Defaults to '%link &raquo;'.

;格式:(string)链接的格式字符串。这个字符串控制了链接前后可以出现什么。字符串中的'%link'会被称为'链接'的任何内容所取代(请看看下一个链接)。'进入%链接'会产生"进入 <a href=..."在这儿放上HTML标签,设计最后的结果。默认为'%link &raquo;'


link
(string) Link text to display. Defaults to next post's title ('%title').

;链接:(string)显示的链接文本。默认为下一篇文章的标题('%标题')。


in_same_cat
(boolean) Indicates whether next post must be within the same category as the current post. If set to TRUE, only posts from the current category will be displayed. Options are:
in_same_cat
(boolean)暗示下一篇文章是否必须与当前的文章在同一个类别中。如果设置为正确的,只有来自当前类别的文章才会得到显示。选项是:


  • TRUE
  • FALSE (Default)
  • 正确的
  • 错误的 (默认)


excluded_categories
(string) Numeric category ID(s) from which the next post should not be listed. Separate multiple categories with and; example: '1 and 5 and 15'. There is no default.
excluded_categories
(string)下一篇文章不应该列出的类别ID。用分开多个类别;例如:'1 和 5 和 15'。没有默认设置。


In Wordpress 2.2, apparently, concatenating multiple categories for exclusion is done with a comma, not and; example: '1, 5, 15'. Still no default.

在WordPress2.2版本中,很显然,是用逗号链接几个将要删除的类别,而不是用;例如:'1, 5, 15'。仍然没有默认设置。

Related

相关的

See also previous_post_link().


也看看previous_post_link()模板:Tag Post Tags

模板:PHP Function Tag Footer

the_ID, the_title, the_title_attribute, single_post_title, the_title_rss, the_content, the_content_rss, the_excerpt, the_excerpt_rss, previous_post_link, next_post_link, posts_nav_link, the_meta,