Codex tools: Log in
Languages: English • 日本語 • Português do Brasil • (Add your language)
Contents |
Displays or returns the page title if a category or tag archive is queried. Therefore, the function can be used only outside the loop.
<?php single_cat_title( $prefix, $display ); ?>
<?php single_cat_title( $prefix = '', $display = true ); ?>
This example displays the text "Currently browsing " followed by the category title.
<p><?php single_cat_title('Currently browsing '); ?>.</p>
This example assigns the current category title to the variable $current_category for use in PHP.
<?php $current_category = single_cat_title("", false); ?>
Since: Version 0.71
single_cat_title() is located in wp-includes/general-template.php.
Categories: the_category(), the_category_rss(), single_cat_title(), category_description(), wp_dropdown_categories(), wp_list_categories(), get_the_category(), get_the_category_by_ID(), get_category_by_slug(), get_the_category_list(), get_category_parents(), get_category_link(), is_category(), in_category()