我正在使用联系表单7插件,我创建表单,然后将生成的代码保存在联系人页面中。但是,在预览页面中没有显示任何形式。 enter image description here
答案 0 :(得分:2)
你错过了 the_content 函数来调用。请将此代码添加到模板文件中,从容器开始到容器结束。请根据您的设计检查HTML。
<div class="contianer"><!--container start here -->
<div class="row">
<!-- map column -->
<div class="col-lg-8 mb-4">
<!-- google map iframe goes here -->
</div>
<!-- contact details here -->
<div class="col-lg-4 mb-4">
<?php the_content(); ?>
</div>
</div>
</div> <!--container end here -->
<?php endwhile; endif; ?>
答案 1 :(得分:0)
您需要在contact-us.php
模板中的某处添加Wordpress循环,否则WP将不会加载您在WP编辑器中定义的内容(在您的情况下是内容形式)