php 首先显示粘贴帖子

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 首先显示粘贴帖子相关的知识,希望对你有一定的参考价值。

add_filter('the_posts', 'bump_sticky_posts_to_top');
function bump_sticky_posts_to_top($posts) {
    $stickies = array();
    foreach($posts as $i => $post) {
        if(is_sticky($post->ID)) {
            $stickies[] = $post;
            unset($posts[$i]);
        }
    }
    return array_merge($stickies, $posts);
}

以上是关于php 首先显示粘贴帖子的主要内容,如果未能解决你的问题,请参考以下文章

php 帖子em destaque - 粘贴帖子

php 忽略ajax请求的粘贴帖子

php 排除粘贴帖子

mysql/php:显示帖子和每个帖子的所有评论

PHP 在帖子之间显示帖子分隔符

php 显示具有自定义帖子UI类型的帖子