How do I display a tag cloud under my post that only shows tags from that post?
First you need to get all the assigned tag id:s by calling wp_get_post_tags because the include parameter in wp_tag_cloud only works with tags id, Not page id. So when you have all the id:s put them in the include parameter within the wp_tag_cloud like this: <?php // Get the assigned tag_id $tag_ids = wp_get_post_tags( $post->ID, … Read more