Tagged Questions
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 ...
0
votes
1answer
13 views
Displaying Tags for the Page I'm On?
I currently have <?php $comma = array( 'separator'=> ", " ); wp_tag_cloud($comma); ?> and I thought this was solved, until going to other posts and seeing the same exact tags.. so I'm ...
0
votes
2answers
103 views
Commas in Tag Cloud
Using <?php wp_tag_cloud(''); ?> to display tags on my website, how do I separate each tag with a comma but also remove the comma from the last tag?
0
votes
1answer
360 views
Add tags to pages
I'd like to be able to add tags to my pages just like I can with posts.
What would I need to do to enable the tag editor/entry for the page editor?
0
votes
1answer
210 views
How can I wrap html around the output of the_time function?
My current code in functions.php:
echo '<div class="post_date">'.the_time('d', '<div class="month">', '</div>').the_time('F', '<div class="day">', ...
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 ...
0
votes
1answer
560 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
295 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
vote
1answer
907 views
What are the Theme tags in style.css used for?
In the style.css file in the first comment block, there is a optional "Tags:" directive. What are these tags used for? When are they used?