Ticket #13971: 13971.diff
| File 13971.diff, 1.1 KB (added by , 16 years ago) |
|---|
-
wp-includes/formatting.php
2826 2826 * @since 3.0.0 2827 2827 */ 2828 2828 function capital_P_dangit( $text ) { 2829 return str_replace( 'Wordpress', 'WordPress', $text ); 2829 $q = _x('“', 'opening curly quote'); 2830 return str_replace( array( ' Wordpress', $q . 'Wordpress', '>Wordpress' ), array( ' WordPress', $q . 'WordPress', '>WordPress' ), $text ); 2830 2831 } 2831 2832 2832 2833 ?> -
wp-includes/default-filters.php
88 88 89 89 // Format WordPress 90 90 foreach ( array( 'the_content', 'the_title', 'comment_text' ) as $filter ) 91 add_filter( $filter, 'capital_P_dangit' );91 add_filter( $filter, 'capital_P_dangit', 11 ); 92 92 93 93 // Format titles 94 94 foreach ( array( 'single_post_title', 'single_cat_title', 'single_tag_title', 'single_month_title', 'nav_menu_attr_title', 'nav_menu_description' ) as $filter ) {