davidruzicka
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Creating a RSS feed with both Catagories and TagsThe 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…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
In reply to: Creating a RSS feed with both Catagories and TagsMuch more difficult to EXCLUDE a tag from the RSS feed… Any suggestion?
Forum: Fixing WordPress
In reply to: Showing the number of posts assigned under each tagThe solution is here
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
In reply to: How to show the number of posts under each tag?The solution is here
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
In reply to: How to show the number of posts under each tag?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…