WordPress: Template Tags/wp link pages:修订间差异

来自站长百科
跳转至: 导航、​ 搜索
(新页面: == Description == Displays page-links for paginated posts (i.e. includes the <code><!--nextpage--></code> Quicktag one or more times)....)
 
无编辑摘要
第1行: 第1行:
== Description ==
== Description ==
== 描述 ==


Displays page-links for paginated posts (i.e. includes the <code>&lt;!--nextpage--&gt;</code> [[WordPress:Write_Post_SubPanel#Quicktags | Quicktag]] one or more times). This works in much the same way as [[WordPress:Template_Tags/link_pages|link_pages()]], the difference being that arguments are given in query string format. This tag must be within [[WordPress:The_Loop]].
Displays page-links for paginated posts (i.e. includes the <code>&lt;!--nextpage--&gt;</code> [[WordPress:Write_Post_SubPanel#Quicktags | Quicktag]] one or more times). This works in much the same way as [[WordPress:Template_Tags/link_pages|link_pages()]], the difference being that arguments are given in query string format. This tag must be within [[WordPress:The_Loop]].
为标了页数的文章显示网页链接(例如,包括<code>&lt;!—下一个网页--&gt;</code> [[WordPress:Write_Post_SubPanel#Quicktags | Quicktag]]一次或者更多的几次)。这与[[WordPress:Template_Tags/link_pages|链接_网页()]]的运行方式基本相同,不同点在于参数是以查询字符串的形式出现的。标签必须在[[WordPress:The_Loop|The_Loop]]内部。
== Usage ==
== 用法 ==


== Usage ==
%%% <?php wp_link_pages('arguments'); ?> %%%


%%% <?php wp_link_pages('arguments'); ?> %%%
%%% <?php wp_link_pages('arguments'); ?> %%%
第10行: 第16行:


===Default Usage===
===Default Usage===
== 例子==
== 默认用法 ==


Displays page-links by default with paragraph tags before and after, using ''Next page'' and ''Previous page'', listing them with page numbers as ''Page 1, Page 2'' and so on.
Displays page-links by default with paragraph tags before and after, using ''Next page'' and ''Previous page'', listing them with page numbers as ''Page 1, Page 2'' and so on.


<?php wp_link_pages(); ?>
默认显示网页链接,网页链接的前后都有段落标签,使用''上一页'' 和''下一页'',并将这些网页标号为''第 1页,第 2页''等等。
 
<?php wp_link_pages(); ?>
 
<?php wp_link_pages(); ?>


===Page-links in Paragraph Tags===
===Page-links in Paragraph Tags===
===段落标签中的网页链接===


Displays page-links wrapped in paragraph tags.
Displays page-links wrapped in paragraph tags.
显示由段落标签包围的网页链接。


  <?php wp_link_pages('before=&lt;p&gt;&after=&lt;/p&gt;&next_or_number=number&pagelink=page %'); ?>
  <?php wp_link_pages('before=&lt;p&gt;&after=&lt;/p&gt;&next_or_number=number&pagelink=page %'); ?>
<?php wp_link_pages('before=&lt;p&gt;&after=&lt;/p&gt;&next_or_number=number&pagelink=page %'); ?>


===Page-links in DIV===
===Page-links in DIV===
=== DIV中的网页链接===


Displays page-links in DIV for CSS reference as <tt>&lt;div id="page-links"&gt;</tt>.
Displays page-links in DIV for CSS reference as <tt>&lt;div id="page-links"&gt;</tt>.
在DIV中为CSS reference显示网页链接<tt>&lt;div id="page-links"&gt;</tt>。


  <?php wp_link_pages('before=&lt;div id="page-links"&gt;&after=&lt;/div&gt;'); ?>
  <?php wp_link_pages('before=&lt;div id="page-links"&gt;&after=&lt;/div&gt;'); ?>


<?php wp_link_pages('before=&lt;div id="page-links"&gt;&after=&lt;/div&gt;'); ?>


== Parameters ==
== Parameters ==
== 参数==


; before : (''string'') Text to put before all the links. Defaults to <tt>&lt;p&gt;Pages:</tt>.
; before : (''string'') Text to put before all the links. Defaults to <tt>&lt;p&gt;Pages:</tt>.
;之前:(''string'')所有的链接之前放置的文本。默认为<tt>&lt;p&gt;Pages:</tt>。
; after : (''string'') Text to put after all the links. Defaults to <tt>&lt;/p&gt;</tt>.
; after : (''string'') Text to put after all the links. Defaults to <tt>&lt;/p&gt;</tt>.
;之后:(''string'')所有的链接之后放置的文本。默认为<tt>&lt;/p&gt;</tt>。
; next_or_number : (''string'') Indicates whether page numbers should be used. Valid values are:
; next_or_number : (''string'') Indicates whether page numbers should be used. Valid values are:
; 下一个_或者_数字 : (''string'')暗示是否会用到网页数字。有效的参数值是:
:* <tt>number</tt> (Default)  
:* <tt>number</tt> (Default)  
:* <tt>数字</tt> (默认)
:* <tt>next</tt> (Valid in WordPress 1.5 or after)
:* <tt>next</tt> (Valid in WordPress 1.5 or after)
:* <tt>下一个</tt> (在 WordPress 1.5 或者以后的版本中有效)
; nextpagelink : (''string'') Text for link to next page. Defaults to <tt>Next page</tt>. (Valid in WordPress 1.5 or after)
; nextpagelink : (''string'') Text for link to next page. Defaults to <tt>Next page</tt>. (Valid in WordPress 1.5 or after)
; 下一个网页链接 : (''string'')链接到下一个网页的文本 。默认为<tt>下一个网页</tt>。(在WordPress1.5及以后的版本中有效)
; previouspagelink: (''string'') Text for link to previous page. Defaults to <tt>Previous page</tt>. (Valid in WordPress 1.5 or after)
; previouspagelink: (''string'') Text for link to previous page. Defaults to <tt>Previous page</tt>. (Valid in WordPress 1.5 or after)
; 上一个网页链接: (''string'')上一个网页链接的文本。默认为<tt>上一个网页</tt>。(在WordPress1.5及以后的版本中有效)
; pagelink : (''string'') Format string for page numbers. <tt> % </tt> in the string will be replaced with the number, so <tt>Page %</tt> would generate "Page 1", "Page 2", etc. Defaults to <tt>%</tt>.
; pagelink : (''string'') Format string for page numbers. <tt> % </tt> in the string will be replaced with the number, so <tt>Page %</tt> would generate "Page 1", "Page 2", etc. Defaults to <tt>%</tt>.
; 网页链接 : (''string'')网页数字的格式字符串。字符串中的<tt> % </tt> <tt> % </tt>会被数字取代,因此<tt>Page %</tt>会产生"第一 1页", "第二2页",等等。默认为<tt>%</tt>。
; more_file : (''string'') Page the links should point to. Defaults to the current page.
; more_file : (''string'') Page the links should point to. Defaults to the current page.
; 更多的_文件 : (''string'')链接指向的而网页。默认为当前网页。


== Related ==
== Related ==
第45行: 第94行:


{{Query String Tag Footer}}
{{Query String Tag Footer}}
== 相关的 ==
{{标签 链接标签}}
{{查询 字符串 标签 页底文字}}

2008年7月5日 (六) 15:42的版本

Description

描述

Displays page-links for paginated posts (i.e. includes the <!--nextpage--> Quicktag one or more times). This works in much the same way as link_pages(), the difference being that arguments are given in query string format. This tag must be within WordPress:The_Loop. 为标了页数的文章显示网页链接(例如,包括<!—下一个网页--> Quicktag一次或者更多的几次)。这与链接_网页()的运行方式基本相同,不同点在于参数是以查询字符串的形式出现的。标签必须在The_Loop内部。

Usage

用法

%%% <?php wp_link_pages('arguments'); ?> %%%

%%% <?php wp_link_pages('arguments'); ?> %%%

Examples

Default Usage

例子

默认用法

Displays page-links by default with paragraph tags before and after, using Next page and Previous page, listing them with page numbers as Page 1, Page 2 and so on.

默认显示网页链接,网页链接的前后都有段落标签,使用上一页下一页,并将这些网页标号为第 1页,第 2页等等。

<?php wp_link_pages(); ?>

<?php wp_link_pages(); ?>

Page-links in Paragraph Tags

段落标签中的网页链接

Displays page-links wrapped in paragraph tags.

显示由段落标签包围的网页链接。

<?php wp_link_pages('before=<p>&after=</p>&next_or_number=number&pagelink=page %'); ?>

<?php wp_link_pages('before=<p>&after=</p>&next_or_number=number&pagelink=page %'); ?>

Page-links in DIV

DIV中的网页链接

Displays page-links in DIV for CSS reference as <div id="page-links">.

在DIV中为CSS reference显示网页链接<div id="page-links">

<?php wp_link_pages('before=<div id="page-links">&after=</div>'); ?>

<?php wp_link_pages('before=<div id="page-links">&after=</div>'); ?>

Parameters

参数

before
(string) Text to put before all the links. Defaults to <p>Pages:.

;之前:(string)所有的链接之前放置的文本。默认为<p>Pages:

after
(string) Text to put after all the links. Defaults to </p>.

;之后:(string)所有的链接之后放置的文本。默认为</p>

next_or_number
(string) Indicates whether page numbers should be used. Valid values are:
下一个_或者_数字
(string)暗示是否会用到网页数字。有效的参数值是:
  • number (Default)
  • 数字 (默认)
  • next (Valid in WordPress 1.5 or after)
  • 下一个 (在 WordPress 1.5 或者以后的版本中有效)
nextpagelink
(string) Text for link to next page. Defaults to Next page. (Valid in WordPress 1.5 or after)
下一个网页链接
(string)链接到下一个网页的文本 。默认为下一个网页。(在WordPress1.5及以后的版本中有效)
previouspagelink
(string) Text for link to previous page. Defaults to Previous page. (Valid in WordPress 1.5 or after)
上一个网页链接
(string)上一个网页链接的文本。默认为上一个网页。(在WordPress1.5及以后的版本中有效)
pagelink
(string) Format string for page numbers.  % in the string will be replaced with the number, so Page % would generate "Page 1", "Page 2", etc. Defaults to %.
网页链接
(string)网页数字的格式字符串。字符串中的 %  % 会被数字取代,因此Page %会产生"第一 1页", "第二2页",等等。默认为%
more_file
(string) Page the links should point to. Defaults to the current page.
更多的_文件
(string)链接指向的而网页。默认为当前网页。

Related

模板:Tag Link Tags

模板:Query String Tag Footer

相关的

模板:标签 链接标签

模板:查询 字符串 标签 页底文字