Viewing 1 replies (of 1 total)
  • Hi,

    You will need to use the wp_get_post_terms() function inside your single.php template from your theme in order to list all the keywords for that particular post.

    It should look something like this:

    <?php $terms = wp_get_post_terms($post->ID, "keywords");
    foreach($terms as $term) { echo $term . " "; } ?>

    Best regards,

Viewing 1 replies (of 1 total)

The topic ‘Display WCK Categories in Post’ is closed to new replies.