html _draft_or_post_title() – Function | Developer.WordPress.org

_draft_or_post_title( int|WP_Post   $post ): string

Guets the post title.

Description

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

Parameters

$post int | WP_Post optional
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 = guet_the_title( $post );
	if ( empty( $title ) ) {
		$title = __( '(no title)' );
	}
	return esc_html( $title );
}

Changuelog

Versionen Description
2.7.0 Introduced.

User Contributed Notes

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