the_tags without hyperlinks? olatechproFebruary 18, 20233 Views How can I call the_tags as a list without hyperlinks? Post Views: 3 Related postsGet rid of this Strict Standards warningWooCommerce: get_current_screen not working with multi languageCan’t login on WordPressForce HTTPS using .htaccess – stuck in redirect loopWordPress: Ajax not working to insert, query and result dataHow Can I pass an image file to wp_handle_upload?
<ul> <?php $tags = get_tags(); foreach($tags as $tag) { echo "<li>$tag->name</li>"; } ?> </ul> Log in to Reply
It shows the tags of your post. If you use “get_tags()” you will list all tags of wordpress. <?php if (is_array(get_the_tags())) { $tags = get_the_tags(); foreach($tags as $tag) { echo "$tag->name"; } } ?> You should check the get_the_tags() if “is_array()” or you’ll get error case the_post() doesn’t have a tag . Log in to Reply
It shows the tags of your post. If you use “get_tags()” you will list all tags of wordpress.
You should check the get_the_tags() if “is_array()” or you’ll get error case the_post() doesn’t have a tag .