Created
December 15, 2015 16:57
-
-
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.
This file contains 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(); | |
$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