首页 文章

WordPress联系表格7无效

提问于
浏览
0

我'm using contact form 7 plugin, i create form and then save the generated code in the contact page. but, in the preview page didn' t显示任何形式 . enter image description here

enter image description here

2 回答

  • 0

    你错过了 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编辑器中定义的内容(在您的情况下是内容表单)

相关问题