So if I have site.com/tags/my-tag
How do I dynamically get "my-tag" for use? There has to be some kind of function for this in WP.
So if I have site.com/tags/my-tag
How do I dynamically get "my-tag" for use? There has to be some kind of function for this in WP.
Assuming you mean some variable to use such as:
$term_id = get_query_var('tag_id');
http://wordpress.org/support/topic/244768?replies=4#post-990086
You must log in to post.