Push capital P filter back behind the wpautop one to catch Wordpress after opening HTML tag

git-svn-id: https://develop.svn.wordpress.org/trunk@15877 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2010-10-20 22:44:15 +00:00
parent 76b207939d
commit 9a7f5ef8df
1 changed files with 2 additions and 1 deletions

View File

@ -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 ) {