Explicitly define what gets texturized.

git-svn-id: http://svn.automattic.com/wordpress/trunk@1125 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt 2004-04-22 15:58:13 +00:00
parent 614fb6c3a1
commit 02a47ffc04
1 changed files with 8 additions and 1 deletions

View File

@ -174,6 +174,13 @@ foreach($wpsmiliestrans as $smiley => $img) {
// Some default filters
add_filter('all', 'wptexturize');
add_filter('category_description', 'wptexturize');
add_filter('list_cats', 'wptexturize');
add_filter('comment_author', 'wptexturize');
add_filter('comment_text', 'wptexturize');
add_filter('single_post_title', 'wptexturize');
add_filter('the_title', 'wptexturize');
add_filter('the_content', 'wptexturize');
add_filter('the_excerpt', 'wptexturize');
?>