Shortest possible way of getting the posts category name and permalink. Useful for breadcrumbs and queries.
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); ?>