single_tag_title()
Display or retrieve page title for tag post archive.
Useful for tag template files for displaying the tag 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_tag_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 2.3.0 | Introduced. |
Code of single_tag_title() single tag title WP 6.0
function single_tag_title( $prefix = '', $display = true ) { return single_term_title( $prefix, $display ); }