The best way would be to just add a cats category and filter those out from the home page using the pre_get_posts filter.
function kill_kittens( $query ) {
if ( $query->is_home ) {
$query->set( 'cat', '-23' ); //assumes the cats category id is 23
}
}
add_action( 'pre_get_posts', 'kill_kittens' );
For your cats page you could create a custom category archive template or just create a custom page and a simple template the queries all the posts in cats category.
<?php
/**
* Template Name: kitties
*/
get_header(); ?>
<div id="kittens">
<?php $kitty_query = new WP_Query( 'cat' => 23 ); //assuming again cat category id is 23
while ( $kitty_query->have_posts() ) : $kitty_query->the_post();
//do stuff
endwhile;
wp_reset_postdata(); ?>
</div>
<?php get_sidebar();
get_footer();
Related Posts:
- Filter categories using tags
- Can paginate_links() be customized for a specific category or tag?
- How can I display tags as categories?
- Display all product tags associated with a specific product category
- How can I filter posts by tag on the fly
- How to filter tags by category?
- Is There a Difference Between Taxonomies and Categories?
- What is the difference between a “tag” and a “category”?
- Can’t custom taxonomies have same terms (slugs) as categories?
- How to display non-hierarchical taxonomy as terms with checkboxes?
- How do the ‘tag’ and ‘category’ (default) taxonomies do ‘save_post’ action?
- Control term order on a per-post basis
- get all tags from category
- 404 Error On Category and Tags Pages
- Checklist of selected categories
- Rewrite URL with category and tag combined using WP_Rewrite
- How to tax query X number of posts related by tag first, then by category if not enough in tag-related
- Use tag interface for hierarchical taxonomy?
- Sort posts by tags in category pages
- How to search for categories and/or tags?
- Using URL parameters, list posts from category and custom taxonomy
- How to get the url to tag & category base set by the user?
- Sticky posts on home page, search, tag and archives without plugin
- Make parent categories not selectable
- Are Categories, Tags and Custom Taxonomies any different in regards to SEO?
- Category and tag with same name
- Create subdomains for tags and categories
- In the tag archive – display count of posts for each category they belong to
- Is it possible to disable certain user roles from creating tags?
- Automated adding of one tag to all the posts in a category
- Moving Categories submenu to Media, but still opens Posts menu
- Exclude most recent posts from specific category in wp_query()
- When using get_categories or similar, is it possible to filter results that contain certain Tags as well?
- How to totally get rid of Category in my blog?
- Root level category, tag, author and archive pages to work
- Showing all the posts in one page?
- Categories and Tags returning 404 on the sidebar when using ugly permalinks
- Add custom category name as data-filter to switch between these categories
- Deleting All tags except categories Wp database
- Is it possible to put tags and category information in the post as text?
- Script to duplicate categories as tags
- Search by word, category, tag, author
- Remove Categories and Tags from Admin Dashboard
- How to filter archives both by category and tag?
- Remove Archive Headline and Archive Intro Text fields on category and tag archive pages in WordPress Admin with Genesis framework
- display most popular tags of category?
- Get tags specific category
- Filtering by Category doesnt paginate correctly on the backend
- Dropdown category filter
- Any way to assign Post Categories and Tags to Links?
- Category archive page – loop through posts of certain tag (with pagination) – pre_get_posts
- Category vs Tag vs Table
- Help with multiple dropdown tags search
- Custom WP_Query for current category (in category.php)?
- Make parent category not selectable when it has child categories
- Replace category titles
- Hide tag and category boxes from the post editor
- Retrieve all posts within tag OR category?
- How to find the number of Tags a post has?
- How to not treat categories as tags in feeds
- Hide posts of a certain category unless logged in
- Categories: A Greenhorn Question on Strategy (Not Code)
- How to customize tag and category post listings to show introductory content?
- What’s the Simplest Way to Override/Rewrite the %category% Permalink Structure Tag?
- How to Filter categories in the permalink structure
- Are Category or Tag Archive Pages Possible?
- How to display posts under a specific subcategory of a given category
- Taxonomy filter all children
- Filter Home Page Posts in Buddypress [closed]
- Categorising posts/pages into years published
- Warning: sizeof (): Parameter must be an array or an object that implements Countable, On products pages
- How can I duplicate categories and tags?
- How to run select query of post with category and tags for API?
- Making a tourism information website [closed]
- Random post + categories + tags
- Search Posts / Pages with multiple options?
- How get permalink for the current category or tag?
- Inserting Category programmatically
- Display tags from specific category in select fields
- Offline WordPress Application
- Changing permalink from /postname/ to category/postname/
- Find out which user created a category or tag?
- RSS/XML of all Categories and/or Tags
- Automatically set default password to all posts in a specific category
- get_the_categories filter returns an empty array
- Get Tags specific to Category using WooCommerce plugin
- category filter doesn’t work in WPML
- Query posts from category based on a filter most favorited
- How to make 2 tag feeds show up on 1 page?
- Filter Categories in meta box for CPTs
- Different templates for different category tags
- Site search needs to find posts for category topic AND Tag or keyword thats not in the post
- Pagination is not working properly in Product Category/Tag pages
- Get link which associated with a specific category and tag
- How to get related tags based on a category?
- Needing a snippet for listing category specific tags
- Show only first category name in RSS?
- How to organize custom categories for filtering and selecting
- How to display categories which contains particular tag?
- “Categories” for six authors [closed]