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.
我正在尝试使用 WordPress 中的自定义页面模板制作自定义联系表单。当我使用
<?php echo $_SERVER['PHP_SELF']; ?>
它从联系页面到索引页面。当我让动作空着时
动作=""
它给了我一个错误。谁能给我一些见解?如果你愿意,我可以发布整个页面。我阅读了类似的帖子,但没有找到可靠的答案。提前致谢。
使用$_SERVER['REQUEST_URI']而不是 PHP_SELF。WordPress 将所有内容重写为 index.php,因此您需要发布到当前 url 而不是 index.php。
$_SERVER['REQUEST_URI']