You could use 2 different loops: 1 for some of your categories and another for the rest.
//Here 2,6 are the category ids
$query1 = new WP_Query( array( 'category__in' => array( 2, 6 ) ) );
// The Loop
while ( $query1->have_posts() ) {
$query1->the_post();
}
// Restore original Post Data
wp_reset_postdata();
$query2 = new WP_Query( array( 'category__not_in' => array( 2, 6 ) ) );
// The Loop
while ( $query2->have_posts() ) {
$query2->the_post();
}
// Restore original Post Data
wp_reset_postdata();
Use this code on the page where you would like to show your category posts. If your’re new to this,maybe you should first know about template hierarchy to figure out which page is being loaded and in which file you should place your code.
Related Posts:
- WordPress Multisite – global categories
- Get posts from sites in Multisite?
- Retrieve Product category ‘NAME’ by product category ID – WooCommerce?
- Can’t custom taxonomies have same terms (slugs) as categories?
- Using wp_category_checklist in a widget
- Filter front page posts by category
- How to add the category ID to admin page
- How to get the url to tag & category base set by the user?
- Exclude one category from get_the_term_list
- WordPress remove separator from last item in wp_list_categories
- Filter categories using tags
- Need help adding custom field to category
- Show Post from parent category (custom taxonomy) ONLY!
- How to Include the Parent and Child Category in the Permalink if the Post is Added to Both
- How to display a list of categories
- Number of posts in page – set per category and exclude sidebar
- Create single.php for specific category by category id
- is_category in pre_get_posts results in php notices
- Use get_term_children to get the sub category of a parent category for the current post
- How to make all posts in a category “unsticky”?
- How do I get the total number of categories in a list of search results?
- Get a variable from object in array [closed]
- How to stop wordpress from showing the selected category on top of others in the category selection?
- advanced custom field Show field in special categry page [closed]
- Creating archive pages for children categories
- Exclude Child Categories Using wp_list_categories
- How do I get a list of all categories that a given user has written blog posts for?
- Arrange posts by date in front page
- Linking products to categories
- How to remove “Category : …”
- “Categories” on my front page [closed]
- Warning: sizeof (): Parameter must be an array or an object that implements Countable, On products pages
- How to loop only categories without posts (+ show category featured image with acf) [closed]
- Add “page-a” slug to category link if user visit category link from “page-a”
- create a page which displays a list of categories title+ short description?
- Query Posts Exclude Entire Category
- Hide woocommerce category name from specific pages
- select parent category first then child
- Scheduling update post daily
- How to exclude children categories of parent category
- Assign category from custom field on post creation and update
- Sticky posts not working when a specific category is set
- Menus don’t work after 4.4 [closed]
- Multiple category selection in post, shows less important category in breadcrumb
- I want to display the all the posts that are inside a certain subcategory
- Category template with pagination returns 404 on next pages
- Display custom taxonomy attached to the post on post single page
- How to display numbered pages in a category
- How can I add an “ALL CATEGORIES” entry in wp_dropdown_categories?
- Ive got a term (get_term_by) but now I want to filter it by a category it is in?
- Get and show all of the available categories
- how to remove the default title of Categories widget
- Recent post by custom select query
- Using a rich text editor for category description?
- How to put page numbers with the next/previous on a post/category list?
- Add custom code at start and end of all posts in a category
- How to get posts by category at /%category%/ url?
- Echo text using is_tag
- Group search results by category
- Custom row actions on a specific category
- WordPress monthly archive category specific
- Show multiple categories in query using redux framework variable
- Add multiple orderby with pre get posts
- new WP_Query issues
- Is custom menu name and category name linked in wordpress?
- Related Post by category, but not current category child
- Displaying posts of given category
- Location Based Permalink
- How to display a block only for a certain category page
- How to show given products only using product id array from specific category page in woocommerce
- Ordering terms whilst in loop
- Get multiple category names from permalink
- How to remove an item from a custom Walker_Nav_Menu
- Pass WordPress variable to the next page
- display number of posts by category Shortcode
- How can I list all slugs categories?
- Remove base category gives 404 error
- Woocommerce product catalog, products with different description
- Custom permalink /%category%/%postname%/ produces 404 on each post
- How to display products with multiple conditions, product_id and category_id
- How can I add metaboxs to Admin Bar?
- How to add Pagination to foreach loop to page
- get_terms sort order with child categories of varying depth
- Split posts into 2 separate streams
- I have many different products on my website how can I get them to display under specific categories?
- Help with SQL query, how to add taxonomie terms with value stored in options?
- Categories in media library
- WordPress Shop and restricting products and categories for some users/groups
- Pass list of categories to JS
- WP url to get rss with full text of post
- Display Referring Category on single post?
- Paginating a list of all posts collected by category titles
- Display deepest post category, when post have multiple categories
- Paginate WordPress Category Pages
- Get a list of post titles and links from yootheme master theme
- Customize category query in widget
- Page permalink rewrite
- Broken category styling
- Excluding cateory not working on my site. how to solve this? [closed]
- Woocommerce Force the category choice before creating new product? [duplicate]