Tagged Questions
0
votes
1answer
19 views
Tag Posts showing in wrong places
Am using a custom template (tag.php) to show posts related to tag. So when someone clicks on say tag ‘A’ then he/she gets redirected to my tag.php layout instead of default template for archives. I ...
2
votes
1answer
82 views
Custom post type with tags
My understanding is, that custom post types can share tags with the posts also.
I have created tags and applied them to a blog post and a custom post type.
Yet when I click on a tag it only returns ...
0
votes
3answers
91 views
How to Remove a Title from All Category and Tags Page?
I am trying to remove the title from all my category and tags page.
So far, I have been using this code http://pastebin.com/xxmyw7BP. It works but not perfectly. The title of my category and tag ...
0
votes
1answer
359 views
Advanced archive url structure (category, tag and date)
Is it possible to create a permalink structure like this:
mysite.com/category/books/tag/read/2010/01
Or at least something like this:
mysite.com/category/books/?tag=read&year=2010&month=01
...
0
votes
1answer
54 views
Displaying a list of tags in my archives page
I'm looking to display a list of tags on my archives.php page. Here is the search archives page.
I have archives by month
<ul>
<?php wp_get_archives(); ?>
</ul>
Archives by ...
0
votes
1answer
939 views
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 ) . '' ); ?>
This works perfectly for all tags of one word only, but any ...
0
votes
1answer
38 views
Bumping a (tagged) post to the top of archives
One of my WordPress sites is a monthly newsletter sent out by a small team to a big organisation that employs over 1,000 people. The main site works well, but I'm working on the archive pages just ...
0
votes
1answer
80 views
Query Posts Incorrectly Displaying Tags Archives
When I go to a tag archive ( http://themeforward.com/demo2/tag/n/ for example) ALL the posts on my blog are being displayed, not just the posts with that tag - and I'd like to fix this.
Here's my tag ...
0
votes
2answers
2k views
Custom post type tag archives don't work for basic loop?
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 also tried using ...
2
votes
2answers
274 views
Tag system like Quora?
What would be the best way to go for creating a tag-system similar to the one on quora.com?
If you don't know what quora looks like, here is what I'm thinking about:
On the tag archive page the user ...