_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_latest_comments_draft_or_post_titleregister_block_core_post_titlerender_block_core_post_title_get_last_post_timeget_post_time
引入
2.7.0
弃用
-

_draft_or_post_title: 这个函数用来检索一个文章或草稿的标题。它也可以用来为一个新的文章或草稿生成一个默认的标题。

获取文章的标题。

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

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

常见问题

FAQs
查看更多 >