From f586f9d7990c359e5f34a0194f49665970316ebc Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 23 Oct 2020 19:07:09 +0000 Subject: [PATCH] Posts, Post Types: Set better default title for custom post types without title support. The default title is now set to "(no title supported)" instead of "Auto Draft". Props garrett-eclipse, rajanit2000, bridgetwillard, donmhico, nrqsnchz. Fixes #45516. git-svn-id: https://develop.svn.wordpress.org/trunk@49288 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/post.php | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/includes/post.php b/src/wp-admin/includes/post.php index 78029fd456..8ec615f1c7 100644 --- a/src/wp-admin/includes/post.php +++ b/src/wp-admin/includes/post.php @@ -680,9 +680,15 @@ function get_default_post_to_edit( $post_type = 'post', $create_in_db = false ) } if ( $create_in_db ) { + if ( post_type_supports( $post_type, 'title' ) ) { + $default_title = __( 'Auto Draft' ); + } else { + $default_title = __( '(no title supported)' ); + } + $post_id = wp_insert_post( array( - 'post_title' => __( 'Auto Draft' ), + 'post_title' => $default_title, 'post_type' => $post_type, 'post_status' => 'auto-draft', ), @@ -690,9 +696,14 @@ function get_default_post_to_edit( $post_type = 'post', $create_in_db = false ) true ); $post = get_post( $post_id ); - if ( current_theme_supports( 'post-formats' ) && post_type_supports( $post->post_type, 'post-formats' ) && get_option( 'default_post_format' ) ) { + + if ( current_theme_supports( 'post-formats' ) + && post_type_supports( $post->post_type, 'post-formats' ) + && get_option( 'default_post_format' ) + ) { set_post_format( $post, get_option( 'default_post_format' ) ); } + wp_after_insert_post( $post, false ); // Schedule auto-draft cleanup.