Wordpress - get_the_tag_list - only text! -
i need script output tags text post tags. not links, ul's , other stuff, plain text can add text class of post. can help? thank you!
founded answer here: need in using get_the_tag_list($id) wordpress
<?php $posttags = get_the_tags(); if ($posttags) { foreach($posttags $tag) { echo $tag->name . ' '; } } ?>
Comments
Post a Comment