Using categories & “stickyness” together
Just add ‘post__in’ => get_option(‘sticky_posts’) to your query, to confine your query to only sticky posts. So, $getHighlights = array( ‘numberposts’ => 7, ‘post_type’ => array(‘post’,’Event’), ‘post__in’ => get_option(‘sticky_posts’), ‘category_name’ => ‘Highlights’ ); should work for you. Edit: This is how you can merge two arrays to get the sticky posts at the top of … Read more