Skip to main content

Grab the Post Category Name and Pemalink

Author

Robert Loncaric

Timestamps

Created: 06 August 2024
Modified: 06 August 2024

Shortest possible way of getting the posts category name and permalink. Useful for breadcrumbs and queries.

Steps

Grab the post category name

Grab the post category permalink

<?php $cat = get_the_category(get_the_ID())[0]->name;?>
<?php $cat_link = get_category_link(get_the_category(get_the_ID())[0]->term_id); ?>