我已经在wp-admin中创建了几个页面并插入了所需的HTML。每个页面包含多个嵌套的div元素。我的一个页面的示例是以下联系页面:
<div id="content">
<div id="inner-content" class="row clearfix">
<div id="main" class="large-12 medium-12 columns clearfix" role="main">
<strong>Artist Name</strong>
<div class="clearfix"></div>
<a class="email" href="mailto:example@gmail.com">Email Artist</a>
<h3 class="team-title">Artist's Team</h3>
<ul class="team-list">
<li>
<strong>Sarah</strong><p class="team-role"> : Fine Art Agent</p>
<p class="company">Some Agency, NYC</p>
<a class="email" href="mailto:example@gmail.com">Email Sarah</a>
</li>
<li>
<strong>Justin</strong><p class="team-role"> : Manager</p>
<div class="clearfix"></div>
<a class="email" href="mailto:example@gmail.com">Email Justin</a>
</li>
<li>
<strong>Jesse</strong><p class="team-role"> : Publicist</p>
<p class="company">Another Art Agency</p>
<a class="email" href="mailto:example@gmail.com">Email Jesse</a>
</li>
</ul>
</div> <!-- end #main -->
</div> <!-- end #inner-content -->
对于此联系页面,我在页面属性&gt;中选择了联系人(contact.php)模板。模板下拉菜单如下:
contact.php
的内容是:
<?php /* Template Name: Contact */ ?>
<?php get_header(); ?>
<?php get_footer(); ?>
出于某种原因,当我去查看“联系”页面时,我看到的只是页眉和页脚。 Wordpress会忽略所有HTML代码。为什么会这样?以及如何解决它?
答案 0 :(得分:0)
你的contact.php
缺少帖子输出,最小代码应该是那样的
<?php the_post(); the_content(); ?>
e.g。将第一个帖子设置为当前(跳过循环)然后输出其内容。虽然你在页面内容中添加了简单的html(通常被视为禁忌)但最好直接回复这样的内容:
<?php the_post(); global $post; echo $post->post_content; ?>
通过这种方式,您可以跳过向内容添加段落等的wordpress过滤器。