管理员在wordpress中添加帖子时如何在appspot中发布数据

时间:2012-11-27 17:14:55

标签: wordpress google-app-engine

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

我该怎么做?我知道我必须更改wordpress管理面板中的add_post选项但是我不知道该怎么做。

1 个答案:

答案 0 :(得分:1)

适用于Wordpress

您可以将表单声明为POST。然后,将您的网址字符串构建为http://jhal-muri.appspot.com/sendAll?emailId=emailid&mssg=msg,其中emailIdmssg参数将自动变为GETinput名称和值的其余部分将变为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>