我有自定义代码,在我网站的标题菜单中显示最新的2篇博文。
<?php
$recentPosts = new WP_Query();
$recentPosts->query('showposts=2');
while ($recentPosts->have_posts()) :
$recentPosts->the_post();
?>
<?php the_permalink(); ?>
<?php the_post_thumbnail_url('thumbnail'); ?>
<?php the_title(); ?>
<?php the_excerpt(); ?>
<?php endwhile; ?>
除了我在Wordpress中查看实际博客帖子时,它的工作方式非常完美。例如,在查看标题应显示the_title();
的博客帖子时...而不是显示实际帖子的标题,而是显示最后一个&#34;最近帖子的标题& #34;在标题菜单中。
所以不知怎的,我需要在标题中使这个最近的帖子代码独一无二,它不会影响实际博客帖子页面上的数据。有什么想法吗?