编辑“WordPress:Template Tags/wp get archives

跳转至: 导航、​ 搜索
警告:您没有登录。如果您做出任意编辑,您的IP地址将会公开可见。如果您登录创建一个账户,您的编辑将归属于您的用户名,且将享受其他好处。

该编辑可以被撤销。 请检查下面的对比以核实您想要撤销的内容,然后发布下面的更改以完成撤销。

最后版本 您的文本
第1行: 第1行:
== Description ==
== 描述 ==
== 描述 ==


这个函数显示了按日期保存的存档,与[[WordPress:Template_Tags/get_archives|get_archives()]]排列的方式是相同的。唯一的不同点在于,参数自变量是以查询字符串的形式提交给函数的。必须在模板内的任何位置使用这个标签。
This function displays a date-based archives list in the same way as [[WordPress:Template_Tags/get_archives|get_archives()]]. The only difference is that parameter arguments are given to the function in query string format.  This tag can be used anywhere within a template.
 
这个函数显示了按日期保存的存档,与[[WordPress:Template_Tags/get_archives|得到_归档()]]排列的方式是相同的。唯一的不同点在于,参数自变量是以查询字符串的形式提交给函数的。必须在模板内的任何位置使用这个标签。
 
== Usage ==
 
%%% <?php wp_get_archives('arguments'); ?> %%%


== 用法 ==
== 用法 ==


%%% <?php wp_get_archives('arguments'); ?> %%%
%%% <?php wp_得到_归档('参数'); ?> %%%


== 例子 ==
== Examples ==
===默认用法===
===Default Usage===
%%% <?php $defaults = array(
%%% <?php $defaults = array(
           'type' => 'monthly',
           'type' => 'monthly',
第17行: 第25行:
           'show_post_count' => false); ?>%%%
           'show_post_count' => false); ?>%%%


== 例子 ==
===默认用法===
%%% <?php $默认 = 数组(
          '类型' => '按月',
          '限制' => '',
          '形式' => 'html',
          '之前' => '',
          '之后' => '',
          '显示_文章_数目' => 错误的); ?>%%%
By default, the usage shows:
默认情况下,用法显示:
默认情况下,用法显示:
* Monthly archives links displayed


*按月归档,显示链接
*按月归档,显示链接
* Displays all archives (not limited in number)
*显示所有的存档(不限制数目)
*显示所有的存档(不限制数目)
* Displays archives in an <nowiki><li></nowiki> HTML list
*以一个<nowiki><li></nowiki>HTML列表显示归档。  
*以一个<nowiki><li></nowiki>HTML列表显示归档。  
* Nothing displayed before or after each link
*每个链接的前面或者后面不显示任何内容
*每个链接的前面或者后面不显示任何内容
* Does not display the count of the number of posts
*不显示文章的数目
*不显示文章的数目
===Last Twelve Months===


===最后十二个月===
===最后十二个月===
Displays archive list by month, displaying only the last twelve.


按月显示归档列表,只显示最后十二个月的归档。
按月显示归档列表,只显示最后十二个月的归档。


%%%<?php wp_get_archives('type=monthly&limit=12'); ?>%%%
%%%<?php wp_get_archives('type=monthly&limit=12'); ?>%%%
%%%<?php wp_得到_归档('类型=按月&限制=12'); ?>%%%
===Last Fifteen Days===


===最后十五天===
===最后十五天===
Displays archive list by date, displaying only the last fifteen days.


按天显示归档列表,只显示最后十五天的存档。
按天显示归档列表,只显示最后十五天的存档。


%%%<?php wp_get_archives('type=daily&limit=15'); ?>%%%
%%%<?php wp_get_archives('type=daily&limit=15'); ?>%%%
%%%<?php wp_得到_归档('类型=每天&限制=15'); ?>%%%
===Last Twenty Posts===


===最后二十篇文章===
===最后二十篇文章===
Displays archive list of the last twenty most recent posts listed by post title.


显示文章标题列出的最后二十篇最近的文章的归档列表。
显示文章标题列出的最后二十篇最近的文章的归档列表。


%%%<?php wp_get_archives('type=postbypost&limit=20&format=custom'); ?>%%%
%%%<?php wp_get_archives('type=postbypost&limit=20&format=custom'); ?>%%%
%%%<?php wp_得到_存档('类型=postbypost&limit=20&format=custom'); ?>%%%
===Dropdown Box===


===下拉列表框===
===下拉列表框===
Displays a dropdown box of Monthly archives, in select tags, with the post count displayed.


显示按月归档的一个下拉列表框,在选择标签中,显示了文章数目。
显示按月归档的一个下拉列表框,在选择标签中,显示了文章数目。
第52行: 第104行:
   <?php wp_get_archives('type=monthly&format=option&show_post_count=1'); ?> </select>
   <?php wp_get_archives('type=monthly&format=option&show_post_count=1'); ?> </select>
%%%
%%%
%%%
<选择 名称="archive-dropdown" onChange='document.location.href=this.options[this.selectedIndex].value;'>
  <option 参数值=""><?php echo attribute_escape(__('选择月份')); ?></选型>
  <?php wp_得到_存档('类型=按月&format=选项&显示_文章_数目=1'); ?> </选择>
%%%
== Parameters ==


== 参数 ==
== 参数 ==


; type : (''string'') 需要显示的存档列表的类型。默认为WordPress设置。有效的参数值:
; type : (''string'') The type of archive list to display. Defaults to WordPress settings. Valid values:
 
;类型 : (''string'')需要显示的存档列表的类型。默认为WordPress设置。有效的参数值:
 
:* <tt>yearly</tt>
:* <tt>yearly</tt>
:* <tt>monthly</tt> (Default)
:* <tt>monthly</tt> (Default)
第62行: 第127行:
:* <tt>postbypost</tt>
:* <tt>postbypost</tt>


; limit : (''integer'') 得到的存档的数目。默认没有数目限制。
; format : (''string'') 归档列表的格式。有效的参数值:


:* <tt>html</tt> - 在HTML列表(&lt;li&gt;)标签和'''之前''' 和'''之后'''字符串中。这是默认的。
:* <tt>按年</tt>
:* <tt>option</tt> - 在选择(&lt;选择&gt;)或者下拉列表选项(&lt;选项&gt;)标签中。
:* <tt>按月</tt> (默认)
:* <tt>每天</tt>
:* <tt>每周</tt>
:* <tt>一篇文章接着一篇文章</tt>
 
 
; limit : (''integer'') Number of archives to get. Default is no limit.
 
; 限制: (''整数'')得到的存档的数目。默认没有数目限制。
 
; format : (''string'') Format for the archive list. Valid values:
 
; 格式 : (''string'')归档列表的格式。有效的参数值:
 
:* <tt>html</tt> - In HTML list (&lt;li&gt;) tags and '''before''' and '''after''' strings. This is the default.
 
:* <tt>html</tt> -在HTML列表(&lt;li&gt;)标签和'''之前''' 和'''之后'''字符串中。这是默认的。
 
:* <tt>option</tt> - In select (&lt;select&gt;) or dropdown option (&lt;option&gt;) tags.
 
:* <tt>选项</tt> -在选择(&lt;选择&gt;)或者下拉列表选项(&lt;选项&gt;)标签中。
 
:* <tt>link</tt> - Within link (&lt;link&gt;) tags.  
:* <tt>link</tt> - Within link (&lt;link&gt;) tags.  
:* <tt>custom</tt> - 使用'''之前''' 和 '''之后'''自定义列表。


; before : (''string'') 为'''格式'''选项使用<tt>html</tt>或者<tt>自定义</tt>时,放置在链接之前的文本。
:* <tt>链接</tt> -在链接(&lt;链接&gt;)标签中。
 
:* <tt>custom</tt> - Custom list using the '''before''' and '''after''' strings.
 
:* <tt>自定义</tt> -使用'''之前''' 和 '''之后'''自定义列表。
 
; before : (''string'') Text to place before the link when using the <tt>html</tt> or <tt>custom</tt> for '''format''' option. There is no default.
 
; 之前 : (''string'')为'''格式'''选项使用<tt>html</tt>或者<tt>自定义</tt>时,放置在链接之前的文本。
 
; after : (''string'') Text to place after the link when using the <tt>html</tt> or <tt>custom</tt> for '''format''' option. There is no default.
 
;之后:(''string'') 为'''格式'''选项使用<tt>html</tt>或者<tt>自定义</tt>时,放置在链接之后的文本。没有默认设置。
 
; show_post_count : (''boolean'') Display number of posts in an archive (<tt>1</tt> - true) or do not (<tt>0</tt> - false). For use with all '''type''' except <tt>'postbypost'</tt>. Defaults to <tt>0</tt>.
 
;显示_文章_数目:(''boolean'')在一个归档(<tt>1</tt> - 真的)中,显示文章的数目,或者不显示文章数目(<tt>0</tt> - 错误的)。使用所有'''类型''',<tt>'一篇文章接着一篇文章'</tt>这种类型,除外。
 
== Related ==


; after : (''string'') 为'''格式'''选项使用<tt>html</tt>或者<tt>自定义</tt>时,放置在链接之后的文本。没有默认设置。
{{Tag General Tags}}


; show_post_count : (''boolean'')在一个归档(<tt>1</tt> - true)中,显示文章的数目,或者不显示文章数目(<tt>0</tt> - false)。使用所有'''类型''',<tt>'一篇文章接着一篇文章'</tt>这种类型,除外。
{{Query String Tag Footer}}


== 相关的==
== 相关的==
请注意,您对站长百科的所有贡献都可能被其他贡献者编辑,修改或删除。如果您不希望您的文字被任意修改和再散布,请不要提交。
您同时也要向我们保证您所提交的内容是您自己所作,或得自一个不受版权保护或相似自由的来源(参阅Wordpress-mediawiki:版权的细节)。 未经许可,请勿提交受版权保护的作品!
取消 编辑帮助(在新窗口中打开)