gutenberg_draft_or_post_title( int|WP_Post $post )

Get the post title.


Description Description

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.

Parameters Parameters

$post

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


Top ↑

Return Return

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


Top ↑

Source Source

File: wp-includes/blocks/latest-comments.php

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


Top ↑

Changelog Changelog

Changelog
Version Description
3.3.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.