我建议您使用htmlspecialchars()
发送内容之前,以及htmlspecialchars_decode()
在页面上显示内容之前,以下是需要复制/粘贴到函数中的函数。php:
function wp_po9568($content)
{
return htmlspecialchars($content);
}
add_filter(\'content_save_pre\',\'wp_po9568\');
以及:
function wp_po5689($content)
{
return htmlspecialchars_decode($content);
}
add_filter( \'the_content\',\'wp_po5689\');
默认情况下,Wordpress会注释掉php标记。