编辑:我仍然有这个让我抓狂的问题-有什么可以帮我的吗?
谢谢
我有一个自定义的博客。具有自定义但基本提要的php。
代码如下:
<div class="container">
<div class="sixteen columns header">
<div class="six columns alpha">
<h4 class="latestTitle">Blog</h4>
</div>
<div class="three columns omega offset-by-seven">
<div id="rightLinks"><a href="#" class="latestTitle2">Home</a> / <a href="#" class="latestTitle3">Blog</a></div>
</div>
</div>
</div>
<div id="whiteBG">
<div class="container">
<div class="ten columns">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2><?php the_title(); ?></h2>
<?php include (TEMPLATEPATH . \'/inc/meta.php\' ); ?>
<div class="entry">
<?php the_content(); ?>
<?php wp_link_pages(array(\'before\' => \'Pages: \', \'next_or_number\' => \'number\')); ?>
<?php the_tags( \'Tags: \', \', \', \'\'); ?>
</div>
<?php edit_post_link(\'Edit this entry\',\'\',\'.\'); ?>
</div>
<?php endwhile; endif; ?>
</div><!-- end ten -->
<div class="six columns">
<?php get_sidebar(); ?>
</div>
</div><!-- end container -->
</div><!-- end whiteBG -->
<?php get_footer(); ?>
出于某种奇怪的原因,它两次显示同一个帖子?以前有人碰到过这个问题吗?
谢谢
本。
这是元代码:
<div class="meta">
<em>Posted on:</em> <?php the_time(\'F jS, Y\') ?>
<em>by</em> <?php the_author() ?>
<?php comments_popup_link(\'No Comments\', \'1 Comment\', \'% Comments\', \'comments-link\', \'\'); ?>
</div>