0

嗨,我有一个 wordpress 博客,我将此代码放在侧栏中的 single.php 页面下方,该代码与主页侧栏中的代码相同> 此代码在主页侧栏中正确工作并返回到所有帖子,但在 single.php 中侧边栏只返回一个帖子。

<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?> 

<div class="new-posts-form">
<div class="new-posts-img"><a href="<?php the_permalink(); ?>"></a><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail(array(100,80)); ?></a></div>
<div class="new-posts-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></div>
 <div class="new-post-description"><?php content('11'); ?></div>
 <div class="new-post-add-date-time"><img src="<?php bloginfo('template_url'); ?>/images/tb_clock.png" /><?php the_time('F j, Y'); ?> at <?php the_time('g:i a'); ?> : <?php the_category(', ') ?></div>


<?php endwhile; ?>
<?php endif; ?>
4

1 回答 1

1

我认为在 single.php 页面上你应该使用这个

供参考,请查看 http://codex.wordpress.org/Function_Reference/get_post

我正在尝试解决您的问题,希望对您有所帮助。

谢谢阿南德

于 2013-10-01T17:24:20.777 回答