Uses
| Uses | Description |
|---|---|
| wp-includes/l10n.php: __() | Retrieve the translation of $text. |
| wp-includes/formatting.php: esc_html() | Escaping for HTML blocks. |
| wp-includes/post-template.php: get_the_title() | Retrieve post title. |
Get the post title.
The post title is fetched and if it is blank then a default string is returned.
(string) The post title if set.
File: wp-admin/includes/template.php
function _draft_or_post_title( $post = 0 ) {
$title = get_the_title( $post );
if ( empty( $title ) ) {
$title = __( '(no title)' );
}
return esc_html( $title );
} | Version | Description |
|---|---|
| 2.7.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/_draft_or_post_title