Skip to content

Instantly share code, notes, and snippets.

@morgyface
Last active April 28, 2020 18:21
Show Gist options
  • Select an option

  • Save morgyface/5f62a7ca70599d3f35e650c0f3a3afe6 to your computer and use it in GitHub Desktop.

Select an option

Save morgyface/5f62a7ca70599d3f35e650c0f3a3afe6 to your computer and use it in GitHub Desktop.
WordPress | First category
<?php
$categories = get_the_category();
if ( ! empty( $categories ) ) {
$first_category = $categories[0];
$first_category_name = esc_html( $first_category->name );
$first_category_link = esc_url( get_category_link( $first_category->term_id ) );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment