Categories provide an easy way to sort your WordPress content. However, there is so much more that you can do with categories to make your site more user and search engine friendly. In this article, we will show you some of the most wanted category hacks and plugins for WordPress.

1. Category RSS Feeds

Did you know that each category on your WordPress site has its own RSS feed? Just add feed at the end of your category URL like this:
http://www.wpbeginner.com/category/news/feed/
That’s all, you can add this link on category templates. Don’t worry we will show you how to create category templates later in this article.
Another great benefit of category feeds is that you can allow your users to subscribe to categories. This gives your users a chance to only subscribe topics that interest them.

2. Category list with RSS Feed Links

The default categories widget in WordPress does not allow you to display an RSS feed link next to category names. If you would like to display feed links next to category names, then add this code in your theme’s functions.php file or a site-specific WordPress plugin.
01function wpb_categories_with_feed() {
02$string .= '<ul>';
03$string .= wp_list_categories('orderby=name&feed=RSS');
04$string .= '</ul>';
05return $string;
06}
07// add shortcode
08add_shortcode('categories-feed''wpb_categories_with_feed');
09// Add filter to execute shortcodes in text widgets
10add_filter('widget_text''do_shortcode');
You need to add [categories-feed] shortcode inside a text widget to list categories with feed links next to them.

3. Adding Category Icons in WordPress

Images make the web more interesting. You can use images to make your category pages stand-out. To associate images with your categories you need to install and activate the Taxonomy Images plugin. Upon activation you need to visit Settings » Taxonomy Images to enable images for categories.
Enabling images for categories in WordPress
To associate images with categories simply visit Post » Categories and click on the thumbnail icon to upload category images.
Adding category icons
See our guide on how to add taxonomy images in WordPress for more details.

4. Enable Categories for Pages

By default categories are only available for posts in WordPress. However, you can associate them to any post type including pages. Simply install and activate Post Tags and Categories for Pages plugin. It works out of box and there are no settings for you to configure. Simply click on pages and you will see categories and tags under the pages menu. Take a look at our tutorial on how to add categories and tags for WordPress pages for more information.
Categories for pages in WordPress

5. Enable Sticky Posts for Category Archives

In WordPress you can make posts sticky to feature them on your home page. To add sticky posts for your category pages, simply install and activate Category Sticky Posts plugin. Upon activation, the plugin adds a category sticky metabox on the post edit screen. See our tutorial on how to add sticky posts for WordPress categoriesfor detailed instructions.
Category sticky metabox on post edit screen in WordPress

6. Creating Category Templates in WordPress

WordPress comes with a powerful theme engine. By default it looks for templates with specific names in your theme to display certain pages. For example, thecategory.php template in a theme is used to display all category pages.
Similarly, you can create templates for specific categories by naming the template with category name. For example, to create a template for movies category, you will name the template file category-movie.php.
Use your theme’s category.php file as the starting point for your single category template and then make the changes you need. For more detailed instructions take a look at our tutorial on how to create category templates in WordPress.

7. Exclude Specific Categories from RSS Feed

By default all your posts appear in your site’s RSS feed. If you would like to hide certain categories from site’s main RSS feed, then simply install and activate theUltimate Category Excluder plugin. Upon activation, simply visit Settings » Category Exclusion to select categories you want to hide from your RSS feeds.
Exclude specific categories from RSS feed in WordPress

8. Show Recent Posts from Specific Categories

The main use of categories is to help you sort your content and help your users find content easily. If a user finds a post in a specific category interesting, then they are likely to read similar posts in the same category. To display recent posts from a category use this code in your theme where you want recent posts from a category to appear.
01$query new WP_Query( 'category_name=news' );
02
03if $the_query->have_posts() ) {
04    echo '<ul>';
05    while $the_query->have_posts() ) {
06        $the_query->the_post();
07        echo '<li>' . get_the_title() . '</li>';
08    }
09    echo '</ul>';
10else {
11    // no posts found
12}
13/* Restore original Post Data */
14wp_reset_postdata();
Replace the value of category_name with the name of category you want to use.

9. Assign Author to Specific Categories

When managing a multi-author WordPress site you may want to assign authors to only post into specific categories assigned to them. Simply install and activate theRestrict Author Posting plugin. Upon activation, go to Users and edit the user you want to assign a category. On the user edit screen you will see a Restrict author post to a category section, where you can select the category assigned to that particular user.
Restrict author to a category

10. Show Excerpts on Category Pages

We recommend our users to display excerpts on archive and category pages. Displaying excerpts only cuts down your page load time which is good for SEO. Apart from that it also protects you from duplicate content issue on your site. To replace full content with excerpts on category pages, simply add this code to your theme’s functions.php file or a site specific plugin.
01function my_excerpts($content = false) {
02if(is_category()) :
03    global $post;
04    $content $post->post_excerpt;
05// If the post has explicitly set excerpt use that
06    if($content) :
07        $content = apply_filters('the_excerpt'$content);
08// If no excerpt is set
09    else :
10        $content $post->post_content;
11        $excerpt_length = 55;
12        $words explode(' '$content$excerpt_length + 1);
13        if(count($words) > $excerpt_length) :
14            array_pop($words);
15            array_push($words'...');
16            $content = implode(' '$words);
17        endif;
18        $content '<p>' $content '</p>';
19    endif;
20endif;
21return $content;
22}
23add_filter('the_content''my_excerpts');
You can also replace content with excerpt by editing your theme’s category.php file and replacing the_content with the_excerpt. For more instructions see this tutorial on how to display post excerpts in WordPress themes.

1 comment:

  1. Submit your blog or website now for appearing in Google and over 300 other search engines!

    Over 200,000 sites submitted!

    Submit RIGHT NOW using I NEED HITS!

    ReplyDelete