You are here

function gutenberg_latest_comments_draft_or_post_title in Gutenberg 8

Same name and namespace in other branches
  1. 8.2 vendor/gutenberg/block-library/blocks/latest-comments.php \gutenberg_latest_comments_draft_or_post_title()

Get the post title.

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

Copied from `wp-admin/includes/template.php`, but we can't include that file because:

1. It causes bugs with test fixture generation and strange Docker 255 error codes. 2. It's in the admin; ideally we *shouldn't* be including files from the admin for a block's output. It's a very small/simple function as well, so duplicating it isn't too terrible.

@since 3.3.0

Parameters

int|WP_Post $post Optional. Post ID or WP_Post object. Default is global $post.:

Return value

string The post title if set; "(no title)" if no title is set.

1 call to gutenberg_latest_comments_draft_or_post_title()
gutenberg_render_block_core_latest_comments in vendor/gutenberg/block-library/blocks/latest-comments.php
Renders the `core/latest-comments` block on server.

File

vendor/gutenberg/block-library/blocks/latest-comments.php, line 28

Code

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