single_cat_title()
Display or retrieve 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.
Uses: single_term_title()
No Hooks.
Return
String|null
. Title when retrieving.
Usage
single_cat_title( $prefix, $display );
- $prefix(string)
- What to display before the title.
Default: '' - $display(true|false)
- Whether to display or retrieve title.
Default: true
Changelog
Since 0.71 | Introduced. |
Code of single_cat_title() single cat title WP 5.9.3
function single_cat_title( $prefix = '', $display = true ) { return single_term_title( $prefix, $display ); }