Wordpress帖子没有通过专用网址显示

时间:2014-12-22 14:21:05

标签: php wordpress post wordpress-theming

有点奇怪。我的新闻帖子没有通过其唯一的网址显示。

实施例: - 通过该网站,您可以看到新闻部分并点击: http://disciplesldn.com/

主题是自定义构建,使用wordpress插件'类型'作为single.php模板文件发布。

single.php代码示例:

<?php get_header(); the_post(); ?>

<section id="singlepost">
<div class="loadwrapper">

<div class="titleheaderpost">
<h1 class="singletitle"><? the_title(); ?></h1>
<p class="back"><a href="<?php bloginfo('url'); ?>" class="newslink">< back to News</a></p>
</div><!-- end of .titleheader -->

<div class="thenewscontent" id="thecontent">

<? the_content(); ?>

</div>
</div>
</section><!-- end of #singlepost -->

<?php get_footer(); ?>

2 个答案:

答案 0 :(得分:2)

在第757行的css中,您在'singlepost' ID上设置了定位样式。你需要删除左边和左边的最高规则和帖子正确显示。

例如:

#singlepost {
     position: relative;
     /* left: 1200px; */
     /* top: -482px; */
     max-width: 960px;
     overflow: hidden;
     height: 100%;
     margin: 0 auto;
}

答案 1 :(得分:0)

尝试使用此代码。

        <?php get_header();?>
        <?php while ( have_posts() ) : the_post(); ?>
        <section id="singlepost">
        <div class="loadwrapper">

        <div class="titleheaderpost">
        <h1 class="singletitle"><? the_title(); ?></h1>
        <p class="back"><a href="<?php bloginfo('url'); ?>" class="newslink">< back to News</a>  </p>
        </div><!-- end of .titleheader -->

        <div class="thenewscontent" id="thecontent">

        <? the_content(); ?>

        </div>
        </div>
        </section><!-- end of #singlepost -->
        <?php endwhile; // end of the loop. ?>
        <?php get_footer(); ?>