The Core filters on the_content
are:
131 add_filter( \'the_content\', \'wptexturize\' );
132 add_filter( \'the_content\', \'convert_smilies\' );
133 add_filter( \'the_content\', \'convert_chars\' );
134 add_filter( \'the_content\', \'wpautop\' );
135 add_filter( \'the_content\', \'shortcode_unautop\' );
136 add_filter( \'the_content\', \'prepend_attachment\' );
您可以将其中任何一个应用于任何字符串。第二个参数是以字符串作为输入的函数的名称,因此。。。
$str = \'this is my content\';
$str = wptexturize($str);
$str = convert_smilies($str);
$str = wpautop($str);
等等。使用你想要的。忽略其他人。这应该给你足够的控制权。如果没有钩子,插件就无法钩住,但要小心,抢走一个具有预期功能的主题是不友好的,可能会破坏东西。
http://codex.wordpress.org/Function_Reference/wptexturize
http://codex.wordpress.org/Function_Reference/convert_smilies
http://codex.wordpress.org/Function_Reference/wpautop