无法访问主题(二十四个孩子)文件夹中的文件

时间:2019-09-26 作者:Sunil Chandurkar

当我尝试访问此处理表单数据的脚本时,服务器上出现403禁止的错误。但在我的本地机器上工作。http://example.com/wp-content/themes/twentynineteen-child/add_restaurant.php

这是我的表单操作。

<form action="<?php echo get_stylesheet_directory_uri()  . "/add_restaurant.php"; ?>" id="add_restaurant" method="post">

1 个回复
SO网友:Vincent Guesné

你能把你的密码。。。这是帮助你的更好方式。

那么,我猜你有html表单?

一个想法:

不要在表单上指定任何路径,而是将其管理到函数中。php

add_action(\'init\', \'my_form_process\');
function my_form_process(){
  // Do nonce check, Post check...
}
进行临时安全检查:Nonce WordPress page

相关推荐

Dealing with html forms

I want to work with html form but i cant understand the Action method and when we need to use it.For example found this code on w3schools:<form action=\"action_page.php\"> First name:<br> <input type=\"text\" value=\"Mickey\">&#