You appear to be a bot. Output may be restricted
Description
Adds a title to posts and pages that are missing titles.
Usage
$string = twenty_twenty_one_post_title( $title );
Parameters
- $title
- ( string ) required – The title.
Returns
string
Source
File name: twentytwentyone/inc/template-functions.php
Lines:
1 to 3 of 3
function twenty_twenty_one_post_title( $title ) { return '' === $title ? esc_html_x( 'Untitled', 'Added to posts and pages that are missing titles', 'twentytwentyone' ) : $title; }