模板:标签 类别 标签

来自站长百科
Xxf3325讨论 | 贡献2008年8月16日 (六) 10:43的版本 (新页面: == Description == Displays a link to the category or categories a post belongs to. This tag must be used within WordPress:The Loop. == Usage == %%% <?php the_category('separator', ...)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至: 导航、​ 搜索

Description

Displays a link to the category or categories a post belongs to. This tag must be used within WordPress:The Loop.

Usage

%%% <?php the_category('separator', 'parents' ); ?> %%%

Examples

Separated by Space

This usage lists categories with a space as the separator.

<p>Categories: <?php the_category(' '); ?></p>
Categories: [[WordPress:#Examples|WordPress]] [[WordPress:#Examples|Computers]] [[WordPress:#Examples|Blogging]]

Separated by Comma

Displays links to categories, each category separated by a comma (if more than one).

<p>This post is in: <?php the_category(', '); ?></p>
This post is in: [[WordPress:#Examples|WordPress]], [[WordPress:#Examples|Computers]], [[WordPress:#Examples|Blogging]]


Separated by Arrow

Displays links to categories with an arrow (>) separating the categories. (Note: Take care when using this, since some viewers may interpret a category following a > as a subcategory of the one preceding it.)

<p>Categories: <?php the_category(' &gt; '); ?></p>
Categories: [[WordPress:#Examples|WordPress]] > [[WordPress:#Examples|Computers]] > [[WordPress:#Examples|Blogging]]

Separated by a Bullet

Displays links to categories with a bullet (•) separating the categories.

%%%

Post Categories: <?php the_category(' &bull; '); ?>

%%%

Post Categories: [[WordPress:#Examples|WordPress]] • [[WordPress:#Examples|Computers]] • [[WordPress:#Examples|Blogging]]

Parameters

separator
(string) Text or character to display between each category link. The default is to place the links in an unordered list.
parents
(string) How to display links that reside in child (sub) categories. Options are:
  • 'multiple' - Display separate links to parent and child categories, exhibiting "parent/child" relationship.
  • 'single' - Display link to child category only, with link text exhibiting "parent/child" relationship.
Note: Default is a link to the child category, with no relationship exhibited.

Related

the_category, the_category_rss, single_cat_title, category_description, wp_dropdown_categories, wp_list_categories, in_category, get_category_parents, get_the_category get_category_link,

模板:PHP Function Tag Footer