Advertisement
Guest User

Untitled

a guest
Mar 12th, 2016
548
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. add_filter('the_posts', 'bump_sticky_posts_to_top');
  2. function bump_sticky_posts_to_top($posts) {
  3. foreach($posts as $i => $post) {
  4. if(is_sticky($post->ID)) {
  5. $stickies[] = $post;
  6. unset($posts[$i]);
  7. }
  8. }
  9. return array_merge($stickies, $posts);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement