wpseek.com
A WordPress-centric search engine for devs and theme authors



single_cat_title › WordPress Function

Since0.71
Deprecatedn/a
single_cat_title ( $prefix = '', $display = true )
Parameters: (2)
  • (string) $prefix Optional. What to display before the title.
    Required: No
    Default: (empty)
  • (bool) $display Optional. Whether to display or retrieve title. Default true.
    Required: No
    Default: true
Returns:
  • (string|void) Title when retrieving.
Defined at:
Codex:

Displays or retrieves page title for category archive.

Useful for category template files for displaying the category page title. The prefix does not automatically place a space between the prefix, so if there should be a space, the parameter value will need to have it at the end.


Source

function single_cat_title( $prefix = '', $display = true ) {
	return single_term_title( $prefix, $display );
}