W3cubDocs

/WordPress

_draft_or_post_title( int|WP_Post $post ): string

Gets the post title.

Description

The post title is fetched and if it is blank then a default string is returned.

Parameters

$postint|WP_Postoptional
Post ID or WP_Post object. Default is global $post.

Return

string The post title if set.

Source

function _draft_or_post_title( $post = 0 ) {
	$title = get_the_title( $post );
	if ( empty( $title ) ) {
		$title = __( '(no title)' );
	}
	return esc_html( $title );
}

Changelog

Version Description
2.7.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/_draft_or_post_title