Advertisement
salmancreation

How to Get current category ID wordpress

Jul 8th, 2015
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <?php
  2. function currentCatID(){  
  3.      global $wp_query;  
  4.      if(is_category() || is_single()){  
  5.           $cat_ID = get_query_var('cat');  
  6.      }  
  7.      return $cat_ID;  
  8. }
  9. ?>
  10.  
  11. <?php echo currentCatID(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement