发新话题
打印

[问题求助] 回复时总是把文章显示两遍,怎么回事?

回复时总是把文章显示两遍,怎么回事?

完全相同的内容显示了两遍,用wordpress classic模板也是一样。代码应该没错啊。

<?php get_header(); ?>
        <div id="bloque">
                <div id="noticias">
                <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
                        <h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_ID(); ?></a>  <?php the_title(); ?></h2>
                        <?php the_content("Continue reading ".the_title('', '', false)."..."); ?>
                        <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
                                <div class="feedback">
                                <?php the_time('F j, Y'); ?> | In <?php the_category(', ') ?> | <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?> <?php edit_post_link('Edit', ' — ', ''); ?>
                                </div>
                        <!--
                        <?php trackback_rdf(); ?>
                        -->
                <?php comments_template(); // Get wp-comments.php template ?>  
                <?php endwhile; else: ?>
                <h2 class="center">Not Found</h2>
                <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
                <?php endif; ?>
                        <div id="pagination">
                        <?php posts_nav_link(' — ', __('« Previous Page'), __('Next Page »')); ?>
                        </div>
                </div>
    </div>
<?php get_footer(); ?>

哪位高手给分析一下什么原因?
主机好象从php4升级到php5了。就这些变化。

TOP

给个地址看看
怀念1997年的秋天 这里的天空是灰色的,每天坐着一个怀旧的流浪人BBpress

TOP

谢谢。

[ 本帖最后由 zixiezi 于 2008-8-26 12:44 编辑 ]

TOP

这个页面代码没什么问题,看看你的评论代码
怀念1997年的秋天 这里的天空是灰色的,每天坐着一个怀旧的流浪人BBpress

TOP

<?php if ( !empty($post->post_password) && $_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) : ?>
<p><?php _e('Enter your password to view comments.'); ?></p>
<?php return; endif; ?>

<h2 id="comments"><?php comments_number(__('No Comments yet'), __('1 Comment'), __('% Comments')); ?>
<?php if ( comments_open() ) : ?>
        <a href="#postcomment" title="<?php _e("Leave a comment"); ?>">»</a>
<?php endif; ?>
</h2>

<p><?php comments_rss_link(__('<abbr title="Really Simple Syndication">RSS</abbr> feed for comments on this post.')); ?>
<?php if ( pings_open() ) : ?>
        <a href="<?php trackback_url() ?>" rel="trackback"><?php _e('TrackBack <abbr title="Uniform Resource Identifier">URI</abbr>'); ?></a>
<?php endif; ?>
</p>

<?php if ( $comments ) : ?>
<ol id="commentlist">

<?php foreach ($comments as $comment) : ?>


        <li id="comment-<?php comment_ID() ?>">
        <?php comment_text() ?>
        <p><small><?php comment_type(__('Comment'), __('Trackback'), __('Pingback')); ?> <?php _e('by'); ?> <?php comment_author_link() ?> — <?php comment_date() ?> <a href="#comment-<?php comment_ID() ?>">#</a><?php edit_comment_link(__("E"), ' |'); ?></small></p>
        </li>

<?php endforeach; ?>

</ol>

<?php endif; ?>

<?php if ( comments_open() ) : ?>
<h2 id="postcomment"><?php _e('Leave a comment'); ?></h2>

<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
<p>You must be <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php the_permalink(); ?>">logged in</a> to post a comment.</p>
<?php else : ?>

<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">

<?php if ( $user_ID ) : ?>

<p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Log out of this account') ?>">Logout »</a></p>

<?php else : ?>

<p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" />
<label for="author"><small>Name <?php if ($req) _e('(required)'); ?></small></label></p>

<p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" />
<label for="email"><small>Mail (will not be published) <?php if ($req) _e('(required)'); ?></small></label></p>

<p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
<label for="url"><small>Website</small></label></p>

<?php endif; ?>

<p><textarea name="comment" id="comment" cols="40" rows="10" tabindex="4"></textarea></p>

<p><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" /></p>
<!--<p><small><strong>XHTML:</strong> <?php echo allowed_tags(); ?></small>-->
<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
</p>
<?php do_action('comment_form', $post->ID); ?>

</form>

<?php endif; // If registration required and not logged in ?>

<?php else : // Comments are closed ?>
<p><?php _e('Sorry, the comment form is closed at this time.'); ?></p>
<?php endif; ?>

TOP

请看,谢谢。

TOP

发新话题