_draft_or_post_title

函数


_draft_or_post_title ( $post = 0 )
参数
  • (int|WP_Post)
    $post
    Optional. Post ID or WP_Post object. Default is global $post.
    Required:
返回值
  • (string) The post title if set.
定义位置
  • wp-admin/includes/template.php
    , line 2029
引入
2.7.0
弃用

获取文章的标题。

获取文章的标题,如果它是空白的,那么将返回一个默认的字符串。

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