Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

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>';
}
?>
 
PREVIOUS NEXT
Tagged: #display #category #wordpress
ADD COMMENT
Topic
Name
7+8 =