0

为什么2个主页的布局不同。

当我把http://localhost/mysite/home/

布局看起来不错,博客列表在那里..这里没有问题..但是当我点击主页时,它会自动转到这个网址......

http://localhost/mysite/ 并且博客文章列表消失了...

我创建了一个名为“主页”的页面,它使用自定义模板......并将其设置为位于“设置”>>“阅读”中的“首页”

这是我的自定义模板的代码...

<?php /*
Template Name: List BLog
*/ ?>
<?php get_header(); ?>
<?php if ( has_post_thumbnail() ) { ?>

<div class="featured">
  <?php the_post_thumbnail(); ?>
</div>
<?php } ?>
<div class="divider"></div>
<?php genesis_before_content_sidebar_wrap(); ?>
<div id="content-sidebar-wrap">
  <?php genesis_before_content(); ?>
  <div id="content" class="hfeed">
    <?php genesis_before_loop(); ?>
    <?php query_posts( $args );  ?>
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
      <h2><a href="<?php the_permalink() ?>">
        <?php the_title(); ?>
        </a></h2>
      <div class="postmetadata"> Posted in:
        <?php the_category(', ') ?>
        |
        <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?>
      </div>
      <div class="entry-content">
        <?php the_excerpt(); ?>
      </div>
    </div>
    <?php endwhile; ?>
    <?php else : ?>
    <h2>Not Found</h2>
    <?php endif; ?>
    <?php genesis_after_loop(); ?>
  </div>
  <!-- end #content -->
  <?php genesis_after_content(); ?>
</div>
<!-- end #content-sidebar-wrap -->
<?php genesis_after_content_sidebar_wrap(); ?>
<?php get_footer(); ?>

我不确定发生了什么。帮助..

4

1 回答 1

0

在您的阅读设置中,您需要设置一个自定义主页。从永久链接的外观来看,它将是“主页”页面。当你设置这个,然后去http://localhost/mysite/home/它会引导你到http://localhost/mysite/. http://localhost/mysite/然后看起来与http://localhost/mysite/home/.

于 2013-08-04T16:49:37.293 回答