wp_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:
- It causes bugs with test fixture generation and strange Docker 255 error
codes.
- 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.
Хуков нет.
Возвращает
Строку
. The post title if set; "(no title)" if no title is set.
Использование
wp_latest_comments_draft_or_post_title( $post );
- $post(int|WP_Post)
- Post ID or WP_Post object.
По умолчанию: global $post
Список изменений
С версии 3.3.0 | Введена. |
Код wp_latest_comments_draft_or_post_title() wp latest comments draft or post title WP 6.6.2
function wp_latest_comments_draft_or_post_title( $post = 0 ) { $title = get_the_title( $post ); if ( empty( $title ) ) { $title = __( '(no title)' ); } return $title; }