我的wordpress插件在页面底部添加数据

时间:2012-01-29 23:47:36

标签: wordpress wordpress-plugin

所以我写了一个Wordpress插件,根据您在管理面板中的设置生成联系表单。

一切都好,但是在显示它时遇到了重大问题。

我创建了一个短代码[flexible_contact_form],您可以通过每个页面的HTML编辑器添加该代码。

在编辑器中将短代码放在每页底部后,联系表单总是出现在页面顶部。

Here's an example

以下是我用来显示联系表单的代码的一部分:

    <div class="cornered front" id="content">
<?php if ($small_desc != ""){ ?> <p><?php echo $small_desc;?></p> <?php } ?>
    <div id="formholder" >
        <form id="contact_form" enctype="multipart/form-data" method="POST">
......................
</form>
</div>

1 个答案:

答案 0 :(得分:0)

您只能通过以下一种方式解决此问题:编辑插件源。