function default_comments_on( $data ) {
if( $data[‘post_type’] == ‘your_custom_post_name’ ) {
$data[‘comment_status’] = 1;
}
return $data;
}
add_filter( ‘wp_insert_post_data’, ‘default_comments_on’ );
function default_comments_on( $data ) {
if( $data[‘post_type’] == ‘your_custom_post_name’ ) {
$data[‘comment_status’] = 1;
}
return $data;
}
add_filter( ‘wp_insert_post_data’, ‘default_comments_on’ );