Skip to content

Instantly share code, notes, and snippets.

@TanvirAmi
Created December 15, 2015 16:57
Show Gist options
  • Save TanvirAmi/bf2347cda10db43f6480 to your computer and use it in GitHub Desktop.
Save TanvirAmi/bf2347cda10db43f6480 to your computer and use it in GitHub Desktop.
Sometimes we need current category id in a current page for various operation in wordpress. By the way we can get current category id in wordpress.
<?php
$categories = get_the_category();
$x = $categories[0]->cat_ID;
print_r($x);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment