Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save prosantamazumder/46e9793eb28a478a38c5b97803967b25 to your computer and use it in GitHub Desktop.
Save prosantamazumder/46e9793eb28a478a38c5b97803967b25 to your computer and use it in GitHub Desktop.
WordPress Display Custom Post Category in single page.php
<div class="sidebar-tags">
<?php
$categories = get_the_category( $post->ID );
foreach ( $categories as $category ):
?>
<a href="<?php echo esc_url( get_category_link( $category->term_id ) ); ?>"><?php echo esc_html( $category->name ); ?></a>';
<?php endforeach; ?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment