_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.


Top ↑

Parameters

$post int|WP_Post Optional
Post ID or WP_Post object. Default is global $post.

Top ↑

Return

string The post title if set.


Top ↑

Source

File: wp-admin/includes/template.php. View all references

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


Top ↑

Changelog

Changelog
Version Description
2.7.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.