在WordPress中显示粘滞帖子并将其从最近的帖子列表中排除
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在WordPress中显示粘滞帖子并将其从最近的帖子列表中排除相关的知识,希望对你有一定的参考价值。
<?php $sticky = get_option( ’sticky_posts’ ); query_posts( array( ‘post__in’ => $sticky, ‘caller_get_posts’ => 1, ‘orderby’ => ID, ’showposts’ => 2 ) ); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <a href=â€<?php the_permalink(); ?>†rel=â€bookmark†title=â€Permanent Link to <?php the_title(); ?>â€> <?php endwhile;?> <?php endif; ?> <?php $sticky = get_option(’sticky_posts’) ; $post_to_exclude[] = $sticky[0]; ‘caller_get_posts’=>1, ’showposts’=>2, ‘post__not_in’=> $post_to_exclude, ); query_posts($args); ?> <h2><a href=â€<?php the_permalink() ?>â€><?php the_title(); ?></a> </h2> <?php while (have_posts()) : the_post(); ?> <?php endwhile;?>
以上是关于在WordPress中显示粘滞帖子并将其从最近的帖子列表中排除的主要内容,如果未能解决你的问题,请参考以下文章