我正在使用联系表单7插件, 我创建了表单, 然后将生成的代码保存在联系页面中。但是, 在预览页面中没有显示任何表单。在此处输入图片说明
在此处输入图片说明
#1
你只是错过了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; ?>
#2
你需要在该contact-us.php模板中的某个位置添加Wordpress循环, 否则WP不会加载你在WP编辑器中定义为内容的内容(在你的情况下为内容形式)
评论前必须登录!
注册