2

是否有任何插件可以在 wordpress 博客中添加自己的 HTML 表单。我想将自己的表单集成到 wordpress 中?

4

3 回答 3

4

这是一篇博客文章,解释了如何做到这一点以及更多内容:http ://shibulijack.wordpress.com/2012/03/18/create-custom-forms-in-wordpress/

基本上,您只需将表单 html 添加到页面编辑器中的页面(在文本模式下),然后使用您的 php 脚本 url 作为表单的操作属性。

于 2013-08-29T09:36:26.180 回答
0

查看高级自定义字段插件,您可以在其中简单地将表单添加到您的博客 http://wordpress.org/extend/plugins/advanced-custom-fields/

于 2012-11-28T10:31:23.790 回答
-1

这是我曾经做过的事情,我很确定有更好的方法可以做到这一点:

File: myform.php, in the root of the wordpress folder
<?php
set_include_path(
    get_include_path().PATH_SEPERATOR.
    pathinfo($_SERVER['SCRIPT_FILENAME'],PATHINFO_DIRNAME));

require('wp-blog-header.php');

header('response: 200 OK');

//change this to match the theme,.. maybe use a function from wordpress instead, i was in a hurry so i didnt make it fancy like that
include "wp-content/themes/twentyten/header.php";
 // Form code here...
include "wp-content/themes/twentyten/footer.php";
?>

然后在wordpress管理区新建一个页面,把这段代码放到源码视图中:

<script type="text/javascript">window.location.href='path/to/myform.php';</script>

但如前所述,这是一种不好的方法,但它完成了工作。

于 2012-11-28T12:55:55.693 回答