Advertisement
deliciousthemes

Haze - Exclude Portfolio Featured Image from Slider

Oct 24th, 2012
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. $args = array(
  2.     'post_type' => 'attachment',
  3.     'orderby' => 'menu_order',                             
  4.     'post_status' => null,
  5.     'post_parent' => get_the_ID(),
  6.     'post_mime_type' => 'image',   
  7.     'exclude'     => get_post_thumbnail_id(),                      
  8.     'posts_per_page' => -1
  9. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement