wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



_draft_or_post_title › WordPress Function

Desde2.7.0
Obsoleton/a
_draft_or_post_title ( $post = 0 )
Parâmetros:
  • (int|WP_Post) $post Optional. Post ID or WP_Post object. Default is global $post.
    Required: No
    Padrão:
Retorna:
  • (string) The post title if set.
Definido em:
Codex:

Gets the post title.

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


Fonte

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