bondigor69 Posted June 16, 2012 Share Posted June 16, 2012 hello guys I have this code from wordpress CODEX http://codex.wordpress.org/Function_Reference/get_the_tags <?php $posttags = get_the_tags(); if ($posttags) { foreach($posttags as $tag) { echo $tag->name . ' #'; } } ?> And I split the tags with # And there is the tags (wordpress #codex #howto #blabla #) The dash separates the tags!!! How can I put the # before each Tag instead separating the tags with the dash Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.