我是wordpress的新手。我有一个wordpress网站,管理员可以在其中添加帖子。但是当他添加帖子时,还应该向appspot http://jhal-muri.appspot.com/sendAll?emailId=emailid&mssg=msg
提交GET方法提交。
我该怎么做?我知道我必须更改wordpress管理面板中的add_post选项但是我不知道该怎么做。
答案 0 :(得分:1)
适用于Wordpress
您可以将表单声明为POST
。然后,将您的网址字符串构建为http://jhal-muri.appspot.com/sendAll?emailId=emailid&mssg=msg
,其中emailId
和mssg
参数将自动变为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>