鹿泽鹿泽  2024-09-11 09:33:21 鹿泽笔记 隐藏边栏  0 

wordpress网站后台允许我们设置一些置顶文章,然后通过调用置顶文章的代码把它调用到自己的网站前台。下面是最常用的wordpress调用置顶文章代码,适用于所有模板使用。

<?php
$sticky = get_option(‘sticky_posts’);
rsort( $sticky );
$sticky = array_slice( $sticky, 0, 5);
query_posts( array( ‘post__in’ => $sticky, ‘caller_get_posts’ => 1 ) );
if (have_posts()) :while (have_posts()) : the_post();
?>
<li><a href=”<?php the_permalink(); ?>” target=”_blank”><?php the_title(); ?></a></li>
<?php endwhile; endif; ?>

代码解释:

  • rsort( $sticky ); 对置顶文章数组逆向排序,即大ID在前;
  • $sticky = array_slice( $sticky, 0, 5);控制显示置顶文章的数量,输出置顶文章数,请修改5,0不要动,如果需要全部置顶文章输出,可以把这句注释掉;
  • ‘post__in’ => get_option(‘sticky_posts’)确定了该LOOP调用的是置顶文章列表。
  • ‘caller_get_posts’的作用是排除非指定性文章,即除了置顶文章之外,不显示其它的文章。

wordpress文章置顶方法:

【后台】–【文章】–【编辑】—【将文章置顶到顶部】

1、文章版权归作者所有,未经允许请勿转载。
2、本站所有文章,如无特殊说明或标注,均为本站原创发布。任何在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们邮箱:526009505@qq.com进行处理。
3、咨询请联系QQ:526009505