wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



_draft_or_post_title › WordPress Function

Seit2.7.0
Veraltetn/v
_draft_or_post_title ( $post = 0 )
Parameter:
  • (int|WP_Post) $post Optional. Post ID or WP_Post object. Default is global $post.
    Erforderlich: Nein
    Standard:
Gibt zurück:
  • (string) The post title if set.
Definiert in:
Codex:

Gets the post title.

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


Quellcode

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