wp_latest_comments_draft_or_post_title

函数
wp_latest_comments_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; "(no title)" if no title is set.
定义位置
相关方法
_draft_or_post_title_close_comments_for_old_post_close_comments_for_old_postscomment_form_titlewp_cache_set_comments_last_changed
引入
3.3.0
弃用
-

wp_latest_comments_draft_or_post_title: 这个函数返回最新评论的草稿或文章的标题。

获取文章的标题。

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

从`wp-admin/includes/template.php`复制,但我们不能包括该文件,因为:

1. 它会导致测试夹具生成的错误和奇怪的Docker 255错误代码。
2. 它在管理中;理想情况下,我们不应该*从管理中为一个块的输出包括文件。这也是一个非常小/简单的功能,所以重复它并不可怕。

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

常见问题

FAQs
查看更多 >