WordPress:Template Tags/single cat title

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

Description

描述

Displays or returns the category title for the current page. For pages displaying WordPress tags rather than categories (e.g. "/tag/geek") the name of the tag is displayed instead of the category. Can be used only outside WordPress:The Loop.

为当前网页显示或者返回一个类别标题。对于显示WordPress标签而不是类别的网页(例如"/标签/geek"),标签名称而不是类别得到显示。只能够在The Loop外部使用。

Usage

用法

%%% <?php single_cat_title('prefix', 'display'); ?> %%%

%%% <?php single_cat_title('prefix', 'display'); ?> %%%

Examples

例子

This example displays the text "Currently browsing " followed by the category title.

这个例子在类别标题的后面显示了文本"当前浏览"。

<p><?php single_cat_title('Currently browsing '); ?>.</p>
Currently browsing WordPress.


<p><?php single_cat_title('Currently browsing '); ?>.</p>

当前浏览WordPress。


This example assigns the current category title to the variable $current_category for use in PHP.

这个例子将当前类别标题分配给变数variable $current_category,在PHP中使用。

<?php $current_category = single_cat_title("", false); ?>

<?php $current_category = single_cat_title("", false); ?>

Parameters

参数

prefix
(string) Text to output before the category title. Defaults to '' (no text).
display
(boolean) Display the category's title (TRUE) or return it for use in PHP (FALSE). Defaults to TRUE.
前缀
(string) 在类别标签前的文本。默认'' (没有文本)。
显示
(boolean)显示类别的标题 (真的) 或者将其返回,在PHP 中使用 (错误的)。默认真的

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

相关的

模板:标签类别标签

模板:PHP 函数标签页底文字