当然可以。实现这一点的方法之一是在你的帖子中添加一个额外的类别,你称之为“粘性”或“重要”之类的。
例如,我将选择“重要”。为了只获得重要的帖子,你可以写一个循环来循环这个类别。
例如:
<?php
$args = array( //arguments for the loop
\'post_type\' => \'post\',
\'category\' => \'important\',
\'posts_per_page\' => 1, //show one post from the important posts
\'order\' => \'DESC\' //order descending, show the lastest posts first
);
$query = new WP_Query( $args );
if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post();
?>
HTML,例如:
<div class="news important">
<?php the_post_thumbnail(); ?>
<h2><?php the title(); ?></h2>
<?php the_excerpt(); ?>
</div>
(ofcourse you can also write this within the php, do what you prever)
然后关闭循环
<?php endwhile; endif; ?>
我没有对此进行测试,但我希望它可以为您指出解决此问题的正确方向。有关详细信息:
WP_Query
你也可以选择一个粘性贴子插件,但自己写会给你更多的灵活性。