diff --git a/wp-admin/post.php b/wp-admin/post.php
index 7fe38636af..1a91592ff7 100644
a
|
b
|
switch ( $action ) { |
88 | 88 | |
89 | 89 | $_POST['comment_status'] = get_default_comment_status( $post->post_type ); |
90 | 90 | $_POST['ping_status'] = get_default_comment_status( $post->post_type, 'pingback' ); |
| 91 | if ( current_theme_supports( 'post-formats' ) && post_type_supports( $post->post_type, 'post-formats' ) && get_option( 'default_post_format' ) ) |
| 92 | $_POST['post_format'] = get_option( 'default_post_format' ); |
91 | 93 | |
92 | 94 | edit_post(); |
93 | 95 | wp_dashboard_quick_press(); |