The the-tags tag has no wiki summary.
0
votes
1answer
38 views
Include tags in the body of a post
it feel like this should be easy. I want to add the post tags inside the body of some posts. I was thinking that creating a shortcode may be the answer. I came across these 2 pieces of code:
To ...
0
votes
2answers
145 views
Using has_tag() outside loop
I want to if the check next post has a specific tag. I tried the following code, but it is not working because has_tag() only works in the loop. I want to use it outside the loop.
<?php if ( ...
1
vote
2answers
51 views
How to not show tags if the post doesn't have any?
I currently have the following trying to avoid showing tags (the icon in this case) when there aren't any, but the icon continues to show up. Any thoughts?
<?php if ( is_singular() && ...
-1
votes
1answer
71 views
Show tags in post? Function not working
I'm using the first example from here: http://codex.wordpress.org/Function_Reference/get_the_tags but nothing is showing up.
There's nothing about get_the_tags in my function.php... nor do I know ...
0
votes
1answer
62 views
the_tags only showing when logged in?
I'm trying to figure out why the_tags(); when used in the loop are only showing when I'm logged in to the site.
I've never come across an issue like this before when developing themes.
my code is ...