下面是一个简单的函数<em>
具有<i>
在您的帖子/页面上:
function replace_em_with_i($content) {
$content = str_replace(\'<em>\', \'<i>\', $content);
$content = str_replace(\'</em>\', \'</i>\', $content);
return $content;
}
add_filter(\'the_content\', \'replace_em_with_i\');
Warning: 我已经测试了代码,以检查它是否有效(而且确实有效),但您可能希望在使用它之前进行一些认真的测试。。。
使用类似的功能可以替换<strong>
具有<b>
, 等等
我希望这有助于。。。