wpseek.com
WordPress开发者和主题制作者的搜索引擎



_draft_or_post_title › WordPress Function

Since2.7.0
已弃用n/a
_draft_or_post_title ( $post = 0 )
参数:
  • (int|WP_Post) $post Optional. Post ID or WP_Post object. Default is global $post.
    Required: No
    默认:
返回:
  • (string) The post title if set.
定义在:
文档:

Gets the post title.

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


源码

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