RPeraltaJr
5/30/2019 - 8:07 PM

Get Post's Tags

<?php

$id = $post->ID; // get post id
$post_tags = get_the_tags($id); // get tags

// conditional
if ($post_tags):
  // loop
  foreach($post_tags as $tag):
    echo $tag->name . ‘ ‘; // output
  endforeach;
endif;