_draft_or_post_title() WordPress Function

This function allows you to easily create a draft or post title for your Wordpress site. simply select the type of content you want to create, enter a title, and click "Publish". This function is perfect for quickly creating content without having to worry about formatting or publishing settings.

_draft_or_post_title( int|WP_Post $post ) #

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

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
VersionDescription
2.7.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.