The built-in taxonomy 'post_tag'.
0
votes
1answer
11 views
Quicktags on all textarea.. Not working on plugin?
I want to put a couple of quicktags/buttons on a textarea which is outputted by a plugin called user submitted posts. I have given this textarea an unique id and read this on the Quicktags ...
2
votes
1answer
377 views
Help with multiple dropdown tags search
I'm trying to build a search form that allows the user to choose certain post tags and filter through real estate listings. So far I have the form built but when I click the search button it brings me ...
2
votes
1answer
32 views
Display custom list of tags in post/page editor with hooks
I used the information posted on this blog post to display specific tags when editing a post. The editors on my site wanted the ability to display pre-specified tags instead of the most popular ones. ...
0
votes
1answer
215 views
How to add tag(s) to all posts from a specific category? [duplicate]
I'm currently redesigning a cartoon site that has 1200+ posts, divided into about 62 different categories. Some categories have 2 posts in them, other categories have 50, 100, 200+.
Now for every ...
0
votes
1answer
17 views
Navigation menus not showing because of custom post type filter
I use this filter to show content from all custom post types in tags archive page
function tagFilter($query) {
$post_type = $_GET['type'];
if (is_tag()){
if (!$post_type) {
...
0
votes
0answers
20 views
Add a prefix term in a custom taxonomy slug
I am looking to rename the slug of a custom taxonomy when inserting a new term, adding to the default slug a prefix.
For example, if the term name is "something" I want the slug is "prefix-something" ...
0
votes
1answer
145 views
Filter categories using tags
I have a website with the following categories:
Videos
Pictures
Stories
And I have a lot of tags like: Funny, Awesome, Mind Blowing, Crazy, etc.
Is there a way I could filter lets say: Videos ...
0
votes
2answers
200 views
Redirect Tag to Post with the same name
I would like to check if the tag name is the title of a post. And load that post page instead of a tag page.
I have post_type "Cities" and suppose that users will tag normal posts with city names. ...
0
votes
1answer
89 views
Output posts with same name as tags?
If someone puts a post on my site, they usually do that with some tags. If someone posts a post with the tag "hello", I want it to output that tag after my content and let it link to the archive page ...
1
vote
1answer
60 views
Generating the ogp tags in theme
I use to generate the ogp tags in themes I code but this commercial one is beyond my knowledge. The client want to share a page but any image option shows up.
Instead of a taxonomy-name.php template ...
0
votes
1answer
17 views
Get TOP x Tags from selected posts
I need help on this, the case is I want to get TOP X tags from user post.
For example user A wrote 50 post, i want to show TOP 5 tags from that user post,
It 's for displaying user interest.
second ...
1
vote
1answer
134 views
Require tags for bbPress topics
I want to require my forum members to enter at least one word into the "tags"-line, when they are creating a new topic.
As regards plugins and solutions, what I found so far is the WyPiekacz-plugin ...
1
vote
1answer
123 views
Any way to assign Post Categories and Tags to Links?
I would like to assign post categories and post tags to the links in my 'Links' section, and (ideally) remove the link categories feature since it would be redundant.
Anyone know how to do this?
1
vote
2answers
2k views
How to search for categories and/or tags?
I have a search function on my blog. If I enter a value, say 'fruits' in the search box and it doesn't match in any of the posts but it is the name of a category in the blog then I want the posts that ...
0
votes
1answer
25 views
Split function “the_tags” in 2 columns
I have the following function that returns the tags of the current post:
<?php the_tags( '<ul> <li>', '</ li> <li>', '</ li> </ ul>' ); ?>
Example:
Is ...
-2
votes
1answer
55 views
Fetching Video From YouTube Automatically [closed]
I am using WordPress, and a theme called DeTube. Is kind of a YouTube clone, and I use this website to upload mainly videos from YouTube.
Is there anyway to fetch videos and populate all the required ...
0
votes
3answers
49 views
Pull Tags But Not as Links
I'm trying to take a list of tags and list them on the page but without linking to their archive page.
At the moment I'm doing this:
<?php
global $wp_query;
$postid = $wp_query->post->ID;
...
1
vote
2answers
73 views
Where to store custom tagging data associated with a custom post type
My application allows users to add tags to an image (similar to facebook). Each tag can consist of up to 8 attributes and there is currently no limit on the amount of tags a user can add.
At the ...
0
votes
0answers
21 views
How can i do a search for tags in a certain category?
I'm trying to search for a certain category with a tag, how can I do this via url?
For example: www.example.com/?cat=1&tag=tag1
how can i achieve this using parameters in the url?
0
votes
1answer
351 views
Get Tags specific to Category using WooCommerce plugin
Could anyone help me to implement this code in WooCommerce, ie instead of categories to use product categories, and instead of tag to use product tag.
In functions.php :
function ...
0
votes
1answer
115 views
Can't Get 'tag' Page To Display only Tagged Posts
I made a tag.php under my theme folder in order to style all of the tagged post pages from urls like 'www.mywebsite.com/tag/kittens'.
However, if I go to 'www.mywebsite.com/tag/kittens' it displays ...
0
votes
1answer
33 views
Hook to change Custom Tag Taxonomy Links?
I have a Custom Post Type named News that has a URL structure like this...
domain.com/news/news-post-name
I have also added a Custom Tag Taxonomy for my News Post Type.
Here is my Re-write settings ...
1
vote
1answer
24 views
How to use all tags in post permalinks
My site with pictures is set up so that the posts do not have a title and have only tags.
I would like to know how to use all tags in permalinks settings?
1
vote
1answer
260 views
Showing all tags in admin -> edit post
Someone knows how to show 'all tags' insteads of the 'most used tags' in edit post of administration panel?
This should give the ability to select with a single click tags that are not yet used!
Here ...
2
votes
1answer
2k views
Search doesn't find tags or categories in custom post types
I've added tags and categories to a custom post, but the search bar doesn't find them when I use it. It does find the 'uncategorized' category (default category) that's inherent in wordpress though. ...
1
vote
1answer
258 views
Get posts with tag all post types
I'm trying to get all posts that have a specific tag, regardless of what type of post that is. I've tried every solution I've found (here on SO and further), but nothing works: I always only get the ...
0
votes
0answers
32 views
How do I link featured images on my blog homepage to an entire tag instead of a post?
I've found a theme (Hatch) for my blog - link here that I really like. I am trying to figure out how to get the mid-sized featured images or post thumbnails that are currently displaying on my ...
0
votes
1answer
17 views
How can I count articles retrieved by tags
how can i get posts retrieved by tags, I want to count them. The code i want to use in tabs.
Ex: Movies(3) , Articles(15)
Movies and Articles are Tabs.
I know how to retrieve the count of posts ...
0
votes
2answers
26 views
Plotting posts on a graph
Here is what i want to do:
For a specific date i want the number of posts from a certain tag.
For example: on 14th March i have a certain number of posts tagged "jazz".
I want to plot that number on ...
2
votes
1answer
150 views
Change tooltip in tag cloud
How to change tag tooltip to tag Description?
I tried and my code is mentioned below.
function title_text( $description ) {
return sprintf( _n('%s topic', '%s', $description), $description );
}
...
0
votes
0answers
26 views
Match tags against posts that contain a custom field tag value
I wish to crossreference specific tags with my posts in order to create a tag list of certain values. In this particular case, some of the tags are company names, and I want these names output in a ...
0
votes
1answer
100 views
Get Adjacent Post By Tag
In this answer -- How to Get Next or Previous Post in a Specific Tag? -- a working function is provided to generate "next/prev" links by tag rather than category.
How could one make this so that you ...
0
votes
0answers
14 views
Change wording of tagged items
I want to change the "Posts tagged "xxx" to "Items tagged "xxx" in the archive page that displays all the posts with a selected tag.
I can't find the code to change...can you point me to the correct ...
1
vote
1answer
13 views
Tags, use both union and intersection at the same time
I have tags on posts and I want a display based on the following logic:
If it has the "biology" tag AND it has either the "female" or "male" tag.
biology AND (female OR male)
Here's what I attempted ...
1
vote
1answer
59 views
non-hierarchical custom taxonomy using checkboxes on edit-screen -> saving issue
I registered a non-hierarchical custom taxonomy ('property_features').
There is a checkbox for every terms of this tax in a custom meta box on the edit-screen.
All terms are displayed and all terms ...
0
votes
0answers
38 views
No results for my WP_Query array
I have to get related posts via keywords/tags, and I found a ton of examples elsewhere on how to do it, but the query doesn't seem to produce any results. Can anyone point out how to do this, and is ...
0
votes
1answer
95 views
Tag-post relationship problem
tag is not working in wordpress like it is supposed to.
When I add tag to a custom post type it shows up in tags list and the relationship can be seen in the term_relationships table and the tags are ...
2
votes
1answer
20 views
Is it possible to generate an alternate structure for multi-tag urls?
I know that one can query multiple tags with the + syntax, as in www.example.com?tag=?test+test2+test3
I'm looking for a solution where the URL would be in this format instead: ...
0
votes
1answer
29 views
Display Posts Only with Specific Tag
I'm trying to only display posts with the tags Movie Trailers and Gaming Trailers but my loops are still displaying everything under the category /videos/
heres what I have
category-videos.php:
...
1
vote
1answer
64 views
Remove post_tag from default post type, add custom taxonomy
I've been searching for a while for an answer to this, but the results I find always deal with custom post types as opposed to the built-in 'post' post type.
I want to remove the default 'Post Tags' ...
0
votes
0answers
12 views
WordPress MU Sitewide Tags restrict by category
I want to restrict or stop certain categories from being "sent to the "tags" blog.
The advice (on another forum and from one of the devs) is as follows (but i cant hack it!) :-
"hook into save_post ...
1
vote
1answer
58 views
How to get the url to tag & category base set by the user?
I'm searching for half an hour now on how to get the url/permalink base in Wordpress (the 'category' and 'tag' value set in the backend). Could you please point me in the right direction?
I want to ...
2
votes
1answer
40 views
Category vs Tag vs Table
I have a site that will hold roughly 1000 posts/articles from an in-house magazine dealing with Australian naval history. The articles cover a range of subjects (such as Aviation, Intelligence, Ship ...
1
vote
1answer
152 views
How to add tags (custom taxonomy) to post class css?
I am trying to figure out how to add my custom taxonomy for tags to the post class css when I already have added the custom taxonomy for categories. The code Im currently using to add the category ...
2
votes
1answer
249 views
Plugin to auto convert custom fields to tag
I have 3 custom fields that i would like to have automatically converted to tags anytime the post has them.
Custom field names: tag_name1, tag_name2, tag_name3
Is there a plugin or function that i ...
0
votes
1answer
16 views
Why is my taxonomy have a category style div id?
I created two custom taxonomies. I created them using identical code and then finding and replacing the "name" with "name2".
I've then looked at the post type page and there are two tag boxes to ...
5
votes
3answers
335 views
Separate Media Library for each user
I'm creating a theme for a client and one of their requests is to allow users to upload images for their own use, but there may be an option to share the images.
Here are some of the caveats:
Each ...
0
votes
2answers
1k views
How to display non-hierarchical taxonomy as terms with checkboxes?
I'd like to have a non-hierarchical custom taxonomy displayed in the add/edit posts admin screen for a custom post type. Obviously, when the custom taxonomy is non-hierarchical, the meta box that's ...
0
votes
1answer
50 views
Tags meta box don't show when creating a new post type
After creating new custom post type with register_post_type() function, I don't see the Tags meta box when adding a page of new post type.
It seems that tags metabox should be added manually.
If so, ...
0
votes
2answers
89 views
100+ terms in any taxonomy slows down post updates?
I'm making a fairly large (for me) e-commerce shop with Woocommerce. The shop has ±1300 products and will be going to ±2000 products. There are also ±2500 Product Tags.
I've had speed problems on a ...

