Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在不导致 PHP 错误的代码的情况下将以下代码添加到 WordPress 网站?
<?xml version="1.0" encoding="utf-8" ?>
一种方法是将它包含在 php 文件的最后一行中
echo '<?xml version="1.0" encoding="utf-8" ?>';
还有可能有人会指出更好的方法。
您可以(取决于服务器设置)尝试禁用 PHP 短标签。您可以通过插入以下行在 .htaccess 文件中执行此操作:
php_value short_open_tag 0
或者使用 PHP ini_set 函数
ini_set ('short_open_tag', 0);