我正试图将最后一篇粘性文章作为特色文章添加到我主页的某个部分。到目前为止,我已经创建了这个,它会显示帖子,但不会显示有粘性的帖子:
<?php query_posts(array(\'post__in\'=>get_option(\'sticky_posts\'),\'showposts\' => 1 )); ?>
<?php while (have_posts()) : the_post(); ?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(\'\'); ?>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
我已尝试更改query\\u posts以获取\\u post。问题是,它会在页面顶部显示其他循环中的其他3条“最新新闻”帖子。
非常感谢您的帮助