我刚刚为客户完成了这个wordpress网站,现在我正在部署它,以便他们可以在后端编辑它,并且出于某种原因,内容显示在我的标题之上(如下所示),我不知道为什么
我把我的代码放在wordpress后端
这是我的代码,我的内容被注释掉了:
<?php
/**
* Template Name: About Us
*
* @package WordPress
* @subpackage Creativeforces
* @since Creativeforces Group 1.0
*/
?>
<head>
<meta charset="utf-8">
<title>Zip Zap Zop Enrichment | About Us</title>
<link rel="stylesheet" type="text/css" href="/wp-content/themes/creativeforces/css/about.css">
<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700' rel='stylesheet' type='text/css'>
</head>
<header>
<?php while ( have_posts() ) : the_post() ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php get_sidebar(); ?>
</header>
<?php get_header(); ?>
<!-- <div class="container">
<h3 class="text-center text-style">Who Is Zip Zap Zop Enrichment</h3>
<hr>
<div class="row">
<div class="col-md-7">
<p> Sisters <strong>Maja Miletich</strong> and <strong>April Rasmussen</strong> grew up with a brother, Zack, who is on the autism spectrum. Though very high functioning, for a time he was totally nonverbal. April and Maja became experts on Zack’s needs in order to help support him as he learned to interact with the world around him; a world that was very difficult to access. However, as Zach grew up, he found his voice through writing and has maintained a blog (Clashing with Life) for more than eight years!</p> <p>It was this ability to communicate that gave Zach greater confidence, gave him a way to interact with a world he had been previously cut off from, and gave him access to information so he could grow and learn. Zach was later able to attend college, study information technology, and has a steady job that he takes great pride in. </p>
<p>Both women were inspired by their brother and both decided to pursue careers in education: Maja studied early childhood development with a focus on special needs, and April pursued secondary language arts with a focus on English language learners. Zip Zap Zop originally began in 2011 after Maja, a graduate of The Second City Improv program, was working in a special needs classroom. She found that many of her improv techniques engaged students who were otherwise unreachable. April became a credentialed English teacher in 2008 and has seen the consequences of high school level students who are not comfortable communicating, whether that be students with special needs or students learning English as a second language.</p>
<p><strong>Zip Zap Zop Enrichment</strong> believes communication, both verbal and non-verbal, is the gateway for all learning, for all students, regardless of subject area. Our goal is to improve communication skills and thus provide greater access for students with special needs in an inclusive classroom, but also improve learning outcomes for all students. Our teaching philosophy is that a truly good teaching practice benefits all students, so by finding ways to support and include students with special needs, all students benefit as well. </p>
</div>
<div class="col-md-2">
<img src="/wp-content/themes/creativeforces/images/maja3.png" alt="">
</div>
</div>
</div> -->
<?php get_footer(); ?>
由于某种原因,我的主页内容显示完全正常,我没有做任何不同的事情。任何帮助将不胜感激。
答案 0 :(得分:0)
这似乎是您的包含或要求的问题,请确保您的包含或要求在您的代码中正确定位请参阅包含和要求的PHP手册。这是一个链接,可以阐明这个问题 Inlcudes
答案 1 :(得分:0)
如果我没弄错的话,这就是抓住你的帖子内容的wordpress循环,它看起来像你的代码中的the_content()位于标题内并且在调用wp get_header()之前。
如果您无法在此处进行排序,则可以使用wordpress stack exchange https://wordpress.stackexchange.com/来解决此问题。
<header>
<?php while ( have_posts() ) : the_post() ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php get_sidebar(); ?>
</header>
<?php get_header(); ?>
答案 2 :(得分:0)
问题在于您拨打get_header()
的时间点。您在调用之前循环浏览了您的内容。将WordPress循环(while ( have_posts()...
)重新定位在get_header()
下面。
当你的文档头应该是header.php的一部分时,你也将它放在模板文件中。
由于您只发布了“关于我们”模板的代码,因此无法说明为什么主页的行为会有所不同。