我正在构建一个单页主题,我在get_post_meta()
问题是下面的代码不起作用,我在网站上看不到任何内容,因为它是空白的。这是我的index.php
.
<?php get_header(); ?>
<?php
global $query_string, $post;
query_posts($query_string . "post_type=page&post_status=publish&posts_per_page=9");
if ( have_posts() ) : while ( have_posts() ) : the_post();
$home = get_post_meta($post->ID, \'home\', true);
$about = get_post_meta($post->ID, \'about\', true);
$contact = get_post_meta($post->ID, \'contact\', true);
$services = get_post_meta($post->ID, \'services\', true);
?>
<?php if ( $home ) : ?>
<div id="home" class="borderline">
<?php the_content(); ?>
</div>
<?php endif; ?>
<?php if ( $about ) : ?>
<section class="about-us" id="about-us">
<div class="container">
<div class="row">
<div class="col-md-12">
<?php the_content(); ?>
</div>
</div>
</div>
</section>
<?php endif; ?>
<?php endwhile; endif; ?>
<?php get_footer(); ?>
上面的代码没有显示任何内容。
问题:如何使用上述代码显示我的内容关于开发单页主题的指导,继续我应该把代码放在什么页面模板层次结构中我的页面看起来像这样
提前谢谢你。
\'Ace\'