TESTING: Adding removal of texturizer to the blog posts.

This commit is contained in:
Philip M. Hofer (Frumph) 2009-08-22 15:57:07 -07:00
parent 950d9d933a
commit 26481f1a33
1 changed files with 7 additions and 0 deletions

View File

@ -1,5 +1,12 @@
<?php
// Remove the wptexturizer from changing the quotes and squotes.
remove_filter('the_title', 'wptexturize');
remove_filter('the_content', 'wptexturize');
remove_filter('the_excerpt', 'wptexturize');
remove_filter('comment_text', 'wptexturize');
global $wpmu_version;
if (!empty($wpmu_version)) {
require_once(get_template_directory() . '/wpmu-functions.php');