Last active
April 28, 2020 18:21
-
-
Save morgyface/5f62a7ca70599d3f35e650c0f3a3afe6 to your computer and use it in GitHub Desktop.
WordPress | First category
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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