[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-includes/blocks/ -> latest-comments.php (summary)

Server-side rendering of the `core/latest-comments` block.

File Size: 158 lines (5 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 3 functions

  wp_latest_comments_draft_or_post_title()
  render_block_core_latest_comments()
  register_block_core_latest_comments()

Functions
Functions that are not part of a class:

wp_latest_comments_draft_or_post_title( $post = 0 )   X-Ref
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.

return: string The post title if set; "(no title)" if no title is set.
param: int|WP_Post $post Optional. Post ID or WP_Post object. Default is global $post.

render_block_core_latest_comments( $attributes = array()   X-Ref
Renders the `core/latest-comments` block on server.

return: string Returns the post content with latest comments added.
param: array $attributes The block attributes.

register_block_core_latest_comments()   X-Ref
Registers the `core/latest-comments` block.




Generated : Thu Apr 25 08:20:02 2024 Cross-referenced by PHPXref