add default comment status setting for pages, props messenlehner, see #12991

git-svn-id: https://develop.svn.wordpress.org/trunk@14448 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ron Rennick
2010-05-04 19:31:24 +00:00
parent 3dea05d10c
commit bdb89ac091
4 changed files with 17 additions and 3 deletions
+5 -1
View File
@@ -2159,7 +2159,11 @@ function wp_insert_post($postarr = array(), $wp_error = false) {
if ( $update )
$comment_status = 'closed';
else
$comment_status = get_option('default_comment_status');
if ( 'page' == $post_type ) {
$comment_status = get_option( 'default_comment_status_page' );
} else {
$comment_status = get_option( 'default_comment_status' );
}
}
if ( empty($ping_status) )
$ping_status = get_option('default_ping_status');