The built-in taxonomy 'post_tag'.

learn more… | top users | synonyms (1)

0
votes
2answers
757 views

I want a query to list tags

how are you? I want to using a string query to list tags in array and using it. I write this query but dosen't work $tags= $wpdb->query("SELECT * FROM $wpdb->term_taxonomy , ...
0
votes
1answer
198 views

saving meta/custom field to tag

In my custom post type what I am trying to do is say I have select drop down option called party_ad. The value of the options are obtained via an RSS feed. echo '<select name="ad_Tags" ...
0
votes
1answer
178 views

Prepending character(s) to a custom <!--more--> tag title?

I'm hacking around with a blog using Cordobo Green Park and I've noticed when I specify a custom title, instead of it beginning with a » symbol (as it does for the standard "» Read more: ...
-1
votes
1answer
676 views

get_page() unlike Loop returns the post content without html tags. How can I fix this?

get_page() unlike Loop returns the post content without html tags. I need tags. How can I fix this? I don't want to change wysiwyg editor, here is the bad solution ...
0
votes
2answers
158 views

Why doesnt my tag page populate with this custom post type?

I have a tag page that is generated with the first image attachments from all of the posts. I call it in the loop with : <img src="<?php echo get_first_attachment() ?>" /> and this is ...
0
votes
1answer
59 views

Getting a WordPress tag to print inside of a traditional php echo

I want to get the template path to print in this echo of a form in the admin. Here is what I got: < ?php echo of_get_option('splash_img_transition', ...
5
votes
3answers
789 views

Best way to show map of tagged posts?

This seems so simple that I'm tearing my hair out. I want to add a page with a map showing all the posts with a particular tag. I want each marker to pop up with the title and the preview, allowing ...
1
vote
1answer
172 views

Tags in Wordpress 3.2

Why I can't add tags since Wordpress 3.2 ?! Ajax doesn't seem to work... I gonna be crazy. Any help please ?
1
vote
1answer
900 views

Tags to Post-ID mysql query. Tag Search

Im trying to implement a tag-based search. When i specify certain tags, tagged posts will be searched and the post-id will be displayed that matches the searchcriteria. Currently it only works for a ...
0
votes
1answer
131 views

How to go to tag archives using a form

I've set up a custom post type called 'properties'. These posts can be tagged with the custom taxonomies of 'area' and 'university'. I would like to be able to have a form with a drop-down for each ...
0
votes
1answer
136 views

return get_the_tag_list with whitespace removed

I need to get_the_tag_list but want to remove whitespace within individual tags. Thus, firefox, internet explorer, opera becomes firefox, internetexplorer, opera All the filters I found ...
0
votes
1answer
178 views

Detect tag page and include an Image for that specific tag

I'm trying to figure out a way to include a div(which will contain a background image) for a specific tag. This block of code works but fails when a post has more than 1 tag. I'm using a page called ...
0
votes
1answer
832 views

tag search using WP_Query

I need to find only posts with a tag forest gump. I've tried: new WP_Query('tag=forest+gump');, new WP_Query('tag=forest gump');. However they both return ALL the posts and not only the posts with ...
1
vote
1answer
154 views

How to enable all Tag Descriptions in loop?

As the title states all I'm trying to do is get the descriptions for all tags inside the loop on my INDEX.php page to show up. I know you can use code to call specific tag descriptions but I want to ...
1
vote
2answers
517 views

How to hide certain tags from the_tags()?

I need to assign some tags to my posts (for external use), but I don't want them showing anywhere that tags are listed. Can someone tell me how to do this?
0
votes
1answer
106 views

Is there any necessary to use tag plugins like simple tagging in wordpress 3.0+

As there is tagging feature built-in wordpress already, but why so many people recommend "simple tagging" plugin. Now i just need a feature of tags link. Is there the built-in a easy way to implement ...
2
votes
1answer
736 views

Getting an ordered list of tags - via wp_tag_cloud or not?

I'm trying to output an ordered list of the top five tags for my site into the sidebar. At the moment, I'm using wp_tag_cloud like this to get it to output a nice <ul>: ...
0
votes
2answers
89 views

Tags are automatically converted if they match post names. Stop It!

Recently I noticed that if I had post tags that are the same as a page name, wordpress is updating the tag to the page title rather than the slug entered. So in this case if I give wordpress the tag ...
1
vote
1answer
169 views

What is the best way to create a menu item that links to all posts with a certain tag?

I guess the title says it all. Short of creating a page with a custom template that links all the posts with a given tag (this is NOT a scalable solution, particularly if you want to let a customer do ...
0
votes
3answers
831 views

display custom taxonomies limited to custom post type?

i have a stupid situation, where i somehow can't find a solution and would really need some help! So... i'm working on a project, where i have in addition to Post and Pages two Custom post types: ...
0
votes
1answer
78 views

how to add # before tags?

Like Lifehacker and several other sites, would like to know how to add # before tags displayed on the site. for e.g. instead of a tag like "abc", how about "#abc". - is there a way to automatically ...
2
votes
3answers
690 views

Plain-text tag list?

I'm looking for a way to display a plain-text list of tags to use as classes on my post elements, I've been trying $tags = get_tags(); $tag_list = ""; foreach($tags as $tag){ $tag_list .= ...
7
votes
0answers
315 views

Wordpress: Can I add categories/tags to all sites in my network at once?

I've installed Wordpress 3.1.2, and have enabled the multi-site network. Each employee in my department can now have their own company blog. I was hoping to provide a bunch of pre-defined categories ...
2
votes
1answer
937 views

What are allowedposttags and allowedtags?

I have been going crazy trying to google up what these globals are. What are allowedposttags and allowedtags? What is the difference between the two? Is there a list of all WP Globals and an ...
0
votes
2answers
51 views

Anyway to retrieve a feed of posts that have BOTH tags?

If I use the URL "/tag/tag1,tag2/feed", it will retrieve posts that have both tags. Is there anyway to do this and just get posts that have BOTH tag1 and tag2?
10
votes
4answers
660 views

What is the difference between a “tag” and a “category”?

I have been using WordPress for several years, but have yet to see a reason to employ tags over categories or tags with categories. What is the thinking behind the two, and when are each appropriate? ...
3
votes
1answer
144 views

How do I hide tags that have only been used once?

I'm looking to modify my theme so that only tags that have been used more than once show up on the site. Here's my logic, feel free to fault any (and all) of it: There is no point in only using ...
1
vote
2answers
549 views

In need of array of post tags

On the single-post page within the loop I need an array of the_tags() which is a string. and get_tags() gives me all of the tags not only this posts. Is there an easy way to get this?
0
votes
1answer
99 views

videos not showing on my tag pages

i am using the Smart Youtube plugin for wordpress to show youtube videos. This works fine on my main site. But when i click on a view by a certain tags, none of the video show up in the blog ...
0
votes
1answer
158 views

Show tags of currently popular (by views) posts

I'm after a sidebar widget that will show the tags of my site's currently (within the last day) most viewed posts, in order to achieve a rudimentary 'trending topics' widget. Does this require a ...
1
vote
2answers
988 views

Show certain terms from custom taxonomy but exclude 'parent' terms?

I have a custom post type "mycustom_products" (hierarchical) that has custom taxonomies called 'categories' and 'tags' (as many other custom post types do). My custom category is called ...
1
vote
1answer
597 views

How to rename 'Tag Base' with WPeC 3.8?

In Wordpress>Settings>Permalinks there is an option at the bottom of the page to change the 'Tag Base'. I've entered 'testtag' in this option and saved, but my tag pages are still displaying as ...
2
votes
1answer
862 views

How do I display a tag cloud with both post tags AND a custom taxonomy?

Using wp_tag_cloud(), how can I display a single tag cloud that incorporates both regular post tags and a custom taxonomy?
1
vote
3answers
496 views

How to allow <video> html5 tag in Wordpress

Currently I am running a Wordpress MU blog using the Unfiltered MU plugin. However, when I try to insert an HTML5 tag, it gets stripped away. I believe it may be the WYSIWYG editor cleaning the ...
0
votes
2answers
576 views

Making tags appear as an Unordered list <ul> instead of a 'cloud'

I'm developing a a site using the wp e-commerce plugin, and it handles tags in pretty much the same way it would if I were using it for a blog instead of a store. The issue is that I want to use the ...
1
vote
1answer
224 views

Efficient Tag Management?

I am the admin for a blog with around 20 authors contributing articles. Have just migrated from Wordpress.com. The problem that started to happen at WP.com, was different authors would use tags ...
2
votes
2answers
2k views

How can I include custom post types on a tag page?

I'm using custom post types, but they don't appear on tag pages along with regular posts and i'd like to include both standard and custom post types on tag or category pages. What would be required ...
4
votes
1answer
197 views

How can I let my audience tag my posts?

I have over 400 interviews on my site and my audience keeps asking me for a way to sort through them. I don't have time to tag all 400 interviews. Do you think there's a way for my audience to tag ...
1
vote
1answer
1k views

Create subdomains for tags and categories

I'd like to find a way to make subdomain addresses work for some of my important tags and categories. For instance foo.thesite.com would show content for thesite.com/category/foo. I've been trying to ...
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 ...
0
votes
1answer
116 views

title tag function

I am using a function to display the URL on title tag, I coded this function which works properly but I would like to customize it more further. function title_tag() { $a = $_SERVER['REQUEST_URI']; ...
0
votes
2answers
298 views

WordPress Tag Page Hook?

Is there any hook for a tag page, so I can alter it's content before outputting?
0
votes
2answers
220 views

Deleting post tags removes categories

I'm trying to remove old post tags from a few WP installs. In some instances, I have over 20k tags for a few thousand posts. I've tried the following code: delete t.*,tt.*,tr.* FROM wp_terms AS t ...
2
votes
2answers
276 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 ...
1
vote
1answer
80 views

When are tags counted? Can it be trigered manually?

I'm using a feed aggregator combined with an auto-tagger for tracking words in a stream. I'm using WP-Cumulus to generate a pretty tag cloud based on these. However, I want to keep the tag cloud ...
1
vote
1answer
399 views

query if on page/2/?

hey guys, is there a way to check if i'm currently not on the frontpage of my blog? I know there are conditional tags like is_home(). However that won't work if I'm on myblog.com/page/2/ I have a ...
1
vote
1answer
184 views

Wordpress “Categories to tags converter” not working. Pointing to import.php instead

I just imported my posts from blogger into wordpress. In doing this, the tags were converted to categories for some strange reason. I am now trying to convert them back into tag using wordpress' ...
0
votes
1answer
496 views

Tags as autocomplete values

How can I load regular post tags as values for autocomplete field? What I have now is pretermined values like this: var data = {items: [ {value: "1", name: "Siemens"}, {value: "2", name: "Phillips"}, ...
0
votes
1answer
570 views

Using wp_tag_cloud('format=array') to print tag names without links?

I'm trying to pull just the tag names as an array collection in order to write them out as a simple listing, without links, but the array that's returned does not send the name as an indexible item. ...
0
votes
1answer
297 views

get_the_tags with separator control?

I'm building a function in theme options to give the site owner more control over the post's "Tags" collection that I display at the bottom of each post page. Specifically, whether to add anchor text ...

1 5 6 7 8 9