This is probably not a “pure” way to do it, but this code make an array of featured post ids and then excludes them from future get_posts.
$featuredPosts = get_posts('category'=>'D','numberposts'=>'-1');
$fPId = array();
foreach ($featuredPost as $currentPost)
{
array_push($fPId,$currentPost->ID);
}
$aPosts = get_posts('category' => 'a', 'exclude'=>$fpId);
$bPosts = get_posts('category' => 'b', 'exclude'=>$fpId);
$cPosts = get_posts('category' => 'c', 'exclude'=>$fpId);
Related Posts:
- query_post by title?
- Why query_posts() isn’t marked as deprecated?
- how to query posts by category and tag?
- How do I query by post format in WordPress 3.1
- How to set posts per page using WP_Query()
- How do I create a random post that will last for a day
- Problem with ‘post__not_in’
- Sort posts alphabetically by custom field value, insert divider between different letters
- Having trouble generating pagination links on custom query
- Use union/intersection query_posts variables in uri request parameter form?
- query_posts doesn’t order by title
- query_posts and pagination, still stuck after much research
- Query posts by taxonomy term name
- Sorting problem with ‘query_posts’ funcion in wordpress. Sort by custom field not working
- Custom query with query_posts doesn’t show post without certain meta_key
- How to sort by meta value?
- pagination in author.php template returns 404 error
- query recent posts from several categories
- Show Posts From Same Category OR Same Tag
- Example Query Posts Showing the Latest Post with the Featured Image
- Dynamically excluding current page id
- How do i paginate query_posts with numeric pagination?
- How to order results by date and meta key?
- Different number of posts on the front page
- Query posts without a specific ID
- posts_per_page => 1 shows 2 posts
- Show individual author rank from query of cumulative post view count for all authors
- Custom posts per page does not work with pagination
- posts_per_page override by default settings
- How to paginate posts correctly that belong to a particular category and are random ordered
- Tricky WP Query
- WordPress query_posts and orderby page order
- IF.. post meta show… Conditional Tag Help…?
- tax_query operator woes
- How do I correctly get all posts within the last year using the query_posts function?
- How to filter query to display posts from parent category only?
- Display random post on a page with post permalink in URL
- Query_post($args)
- WordPress pagination with get_posts?
- Using ajax with paging and a custom sub-query
- Get post and all posts after it by ID?
- query_posts() on key’s value, or key’s existence
- ACF Query meta_values don’t work with ‘offset’
- How to display certain category in the loop from WordPress default post type?
- How do I make query use exact post title
- WordPress tax_query not showing private posts
- WordPress /page/2 not working
- define orderby URL with meta_key=post_views_count
- Query_posts and attachments
- My post repeats itself on the second page [closed]
- Custom loops, sticky posts, and pagination nightmare
- Querying posts only if the current page is not paged?
- get_the_title outputs title until spacing; it does not get full length of title
- how to store wordpress loop in array?
- Filter Loop by Custom Field Value
- Display custom post type by custom taxonomy
- WordPress wp_get_attachment_thumb_url full
- Display trimmed version of the_post()
- How to show the number of each post has been read in a while loop?
- Modify loop but keep the original query, what am I doing wrong?
- Post per page not working if no category specified
- How to change default post type / post to media or attachments
- Frontend form with multiple posts
- How exclude 3 latest posts of a category in query_posts
- Query Products & Store IDs in array
- Way to cache a query for 24 hrs
- query_posts orderby multiple ways
- Can I use WP_Query one time and then filter the results multiple times
- Pagination linking to first page
- Posts being viewed
- Weird problem on if statement
- Issue with sidebar widgets not showing when I do custom queries
- Why would post_type be ignored in this query?
- query_posts call sets is_home() to true
- show all in query_posts on category.php?
- Query Posts Incorrectly Displaying Tags Archives
- Querying a query
- Best Query for blog posts
- Most Effective Method? Exclude Category and Number of Posts Per Page
- How do I query based on the modified date?
- Script that gets the first tag of post and query all other posts with the same tag
- Trouble highlighting correct menu parent with wp_nav_menu classes while viewing “single posts”
- Custom query looking at multiple custom fields and properly sorting
- Latest 5 post excerpts from 5 different authors in Sidebar
- post var problem with shortcode loop
- Pre-existing arguments when using queries
- Help with query_posts function
- Get posts for each user
- Pull new posts using feed
- query_posts() with multiple meta data comparisons
- query_posts not working after wordpress 3.7 update
- get_next_posts_link() stops displaying at page 4
- Multiple post queries -category,posts per page,orderby
- Is that the query_posts() the real criminal here?
- How to can I search range of products using between
- Query Posts (post meta)
- Including post data in a sidebar occurring outside of and before the Loop
- get all posts with certain meta data
- Lots of SQL queries
- How do I find the first item in the post array?