0

我是wordpress的新手。我有一个 wordpress 网站,管理员可以在其中添加帖子。但是当他添加帖子时,还应该向 apppot 提交 GET 方法http://jhal-muri.appspot.com/sendAll?emailId=emailid&mssg=msg

我怎样才能做到这一点?我知道我必须更改 wordpress 管理面板中的 add_post 选项但我不知道该怎么做。

4

1 回答 1

1

对于 WordPress

您可以将表单声明为POST. 然后,将您的 URL 字符串构造为http://jhal-muri.appspot.com/sendAll?emailId=emailid&mssg=msgwhereemailIdmssg参数将自动变为GET. 其余的input名称和值将变为POST.

示例代码

<form method="post" acion="http://jhal-muri.appspot.com/sendAll?emailId=emailid&mssg=msg">
<input type="text" value="" name="emailId" />
<input type="text" value="" name="msg" />
<input type="submit" name="submit" value="Send All" />
</form>
于 2012-11-27T17:26:41.883 回答