diff --git a/wp-includes/default-filters.php b/wp-includes/default-filters.php index 3a7c22e06..7ebff817a 100644 --- a/wp-includes/default-filters.php +++ b/wp-includes/default-filters.php @@ -95,8 +95,9 @@ foreach ( array( 'comment_author', 'term_name', 'link_name', 'link_description', } // Format WordPress -foreach ( array( 'the_content', 'the_title', 'comment_text' ) as $filter ) +foreach ( array( 'the_content', 'the_title' ) as $filter ) add_filter( $filter, 'capital_P_dangit', 11 ); +add_filter( 'comment_text', 'capital_P_dangit', 31 ); // Format titles foreach ( array( 'single_post_title', 'single_cat_title', 'single_tag_title', 'single_month_title', 'nav_menu_attr_title', 'nav_menu_description' ) as $filter ) {