Filter query_posts by tag slug on “Tag Archive” page (when tag is 2 or more words)
I’m using the following to bring up a tag archive page: <?php query_posts( “tag=”. ” . single_tag_title( ”, false ) . ” ); … Read more
I’m using the following to bring up a tag archive page: <?php query_posts( “tag=”. ” . single_tag_title( ”, false ) . ” ); … Read more
I currently have the following trying to avoid showing tags (the icon in this case) when there aren’t any, but the icon continues … Read more
If I click a random tag I want the tag page to list only 20 posts that is related to that tag and … Read more
I’m in the middle of building a website and one of the pages will be a glossary. The first page of the glossary … Read more
I’m using a small code to display a tag list for the current categories like below: <?php $custom_query = new WP_Query(‘posts_per_page=-1&category_name=overnachten’); if ($custom_query->have_posts()) … Read more
I am using WordPress 3.4.2 for one of my site and currently it has 38,251 tags Now i want to remove all Tags … Read more
Is there a php function which can add/remove tags of posts? If not how would I do this? I am looking for something … Read more
i want to rename TAG to TOPIC and url it should be wordpress.stackexchange.com/tag/ to wordpress.stackexchange.com/topic/ is it possible ? 1 Answer 1 Click … Read more
On my website, registered users (subscriber role) can send drafts and, if admins validate them, they are published. I’m trying to add a … Read more
I have registered a custom post type with the right parameters. By that I mean I have added ‘taxonomies’ => array(‘post_tag’,’category’), I have … Read more