Advertisement
cipher87

Exclude Post in Masonry

Jan 10th, 2017
442
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. add_filter('avia_masonry_entries_query', 'avia_masonry_custom_query');
  2.  
  3. function avia_masonry_custom_query( $query ) {
  4. global $post;
  5. $exclude_ids = array('post__not_in' => array($post->ID));
  6. $query = array_merge((array)$exclude_ids, (array)$query);
  7. return $query;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement