Title: davidruzicka's Replies | WordPress.org

---

# davidruzicka

  [  ](https://wordpress.org/support/users/davidruzicka/)

 *   [Profile](https://wordpress.org/support/users/davidruzicka/)
 *   [Topics Started](https://wordpress.org/support/users/davidruzicka/topics/)
 *   [Replies Created](https://wordpress.org/support/users/davidruzicka/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/davidruzicka/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/davidruzicka/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/davidruzicka/engagements/)
 *   [Favorites](https://wordpress.org/support/users/davidruzicka/favorites/)

 Search replies:

## Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Creating a RSS feed with both Catagories and Tags](https://wordpress.org/support/topic/creating-a-rss-feed-with-both-catagories-and-tags/)
 *  [davidruzicka](https://wordpress.org/support/users/davidruzicka/)
 * (@davidruzicka)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/creating-a-rss-feed-with-both-catagories-and-tags/#post-1176277)
 * The following code will exclude some tags by their ID from the feed link. In 
   this case the link is a nice url.
    I’m pulling all the tags except for those 
   excluded in get_tags(). this will output an URL in the form: [http://yourblog.com/feed/rss?tag=tag1,tag2,tag3,tag7,tag11&#8230](http://yourblog.com/feed/rss?tag=tag1,tag2,tag3,tag7,tag11&#8230);
 * Not very elegant. Better idea?
 *     ```
       <?php bloginfo('rss2_url'); ?>/rss?tag=
       <?php
       $tags = get_tags('exclude=21,28,12,29');
       if ($tags) {
         foreach ($tags as $tag) {
         echo $tag->slug.',';
         }
       }
       ?>
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Creating a RSS feed with both Catagories and Tags](https://wordpress.org/support/topic/creating-a-rss-feed-with-both-catagories-and-tags/)
 *  [davidruzicka](https://wordpress.org/support/users/davidruzicka/)
 * (@davidruzicka)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/creating-a-rss-feed-with-both-catagories-and-tags/#post-1176276)
 * Much more difficult to EXCLUDE a tag from the RSS feed… Any suggestion?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Showing the number of posts assigned under each tag](https://wordpress.org/support/topic/showing-the-number-of-posts-assigned-under-each-tag/)
 *  [davidruzicka](https://wordpress.org/support/users/davidruzicka/)
 * (@davidruzicka)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/showing-the-number-of-posts-assigned-under-each-tag/#post-1187377)
 * The solution is here
 * [http://wordpress.org/support/topic/303750?replies=7](http://wordpress.org/support/topic/303750?replies=7)
 * You bascially need to redo the query and you loose the wp_tag_cloud() parameters,
   unless you change the query.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to show the number of posts under each tag?](https://wordpress.org/support/topic/how-to-show-the-number-of-posts-under-each-tag/)
 *  [davidruzicka](https://wordpress.org/support/users/davidruzicka/)
 * (@davidruzicka)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/how-to-show-the-number-of-posts-under-each-tag/#post-1180043)
 * The solution is here
 * [http://wordpress.org/support/topic/303750?replies=7](http://wordpress.org/support/topic/303750?replies=7)
 * You bascially need to redo the query and you loose the wp_tag_cloud() parameters,
   unless you change the query.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to show the number of posts under each tag?](https://wordpress.org/support/topic/how-to-show-the-number-of-posts-under-each-tag/)
 *  [davidruzicka](https://wordpress.org/support/users/davidruzicka/)
 * (@davidruzicka)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/how-to-show-the-number-of-posts-under-each-tag/#post-1180042)
 * Up for that. I’m looking for this too. As far as I can tell wp_tag_cloud() does’nt
   provide this parameter. This could mean that we need to hack/change the function
   that generate tags…

Viewing 5 replies - 1 through 5 (of 5 total)