Definition:
function single_post_title($prefix = '', $display = true) {}
Display or retrieve page title for post.
This is optimized for single.php template file for displaying the post title.
Parameters
- string $prefix: Optional. What to display before the title.
- bool $display: Optional, default is true. Whether to display or retrieve title.
Return values
returns:Title when retrieving, null when displaying or failure.
Defined filters
- single_post_title
apply_filters('single_post_title', $_post->post_title, $_post)
Source code
function single_post_title($prefix = '', $display = true) { $_post = get_queried_object(); if ( !isset($_post->post_title) ) return; $title = apply_filters('single_post_title', $_post->post_title, $_post); if ( $display ) echo $prefix . $title; else return $title; }
2891
No comments yet... Be the first to leave a reply!