'; } add_action('admin_head', 'wph_admin'); add_action('login_head', 'wph_admin'); /* ------------------------------------------------------------------------- Unfancy Quote Plugin For WordPress by Semiologic Slightly modified for better Hebrew support http://www.semiologic.com/software/unfancy-quote/ ------------------------------------------------------------------------- */ add_filter('category_description', 'strip_fancy_quotes', 20); add_filter('list_cats', 'strip_fancy_quotes', 20); add_filter('comment_author', 'strip_fancy_quotes', 20); add_filter('comment_text', 'strip_fancy_quotes', 20); add_filter('single_post_title', 'strip_fancy_quotes', 20); add_filter('the_title', 'strip_fancy_quotes', 20); add_filter('the_content', 'strip_fancy_quotes', 20); add_filter('the_excerpt', 'strip_fancy_quotes', 20); add_filter('bloginfo', 'strip_fancy_quotes', 20); add_filter('widget_text', 'strip_fancy_quotes', 20); /** * strip_fancy_quotes() * * @param string $text * @return string $text **/ function strip_fancy_quotes($text = '') { $text = str_replace(array("‘", "’", "′"), "'", $text); $text = str_replace(array("“", "”", "″"), "\"", $text); return $text; } # strip_fancy_quotes() ?>