Skip to content

Instantly share code, notes, and snippets.

@ilhantekir
Forked from hslaszlo/get-first-category.php
Created February 3, 2019 10:17
Show Gist options
  • Save ilhantekir/d5acb3b9dc9e19b2f1a5fae2343c0875 to your computer and use it in GitHub Desktop.
Save ilhantekir/d5acb3b9dc9e19b2f1a5fae2343c0875 to your computer and use it in GitHub Desktop.
Get first category name or id from wordpress post
<?php
// in the loop
$category = get_the_category();
$currentcat = $category[0]->cat_ID;
$currentcatname = $category[0]->cat_name;
$currentcatslug = $category[0]->slug;
// outside the loop
global $post;
$categories = get_the_category($post->ID);
$currentcat = $category[0]->cat_ID;
$currentcatname = $category[0]->cat_name;
$currentcatslug = $category[0]->slug;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment