你会过得更好creating a custom page template, 将HTML粘贴到文件中,然后简单地将模板附加到管理中的页面。
WordPress在帖子/页面内容上应用了大量过滤,这可能会对你的代码造成严重破坏(更不用说你有属于<head />
).
UPDATE: 在主题文件夹中创建一个PHP文件(将其命名为template something.PHP);
<?php
/*
Template Name: My Template Something
*/
?>
<!-- any PHP & HTML goes here!! -->
<!-- Note: Should be a complete HTML document if not calling get_header() -->