Answers for "get category name in wordpress"

PHP
0

display category name wordpress

<?php
$categories = get_the_category();
if ( ! empty( $categories ) ) {
	echo '<a href="' . esc_url( get_category_link( $categories[0]->term_id ) ) . '">' . esc_html( $categories[0]->name ) . '</a>';
}
?>
Posted by: Guest on December-18-2020
0

wordpress display post categories

<?php the_terms( $post->ID, 'topics', 'Topics: ', ', ', ' ' ); ?>
Posted by: Guest on November-27-2020

Code answers related to "get category name in wordpress"

Browse Popular Code Answers by Language