From 02a47ffc047e79a777f30c238c455172835a8a46 Mon Sep 17 00:00:00 2001 From: saxmatt Date: Thu, 22 Apr 2004 15:58:13 +0000 Subject: [PATCH] Explicitly define what gets texturized. git-svn-id: http://svn.automattic.com/wordpress/trunk@1125 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/vars.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/wp-includes/vars.php b/wp-includes/vars.php index bfe9b2c27..68988bc33 100644 --- a/wp-includes/vars.php +++ b/wp-includes/vars.php @@ -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'); ?> \ No newline at end of file