Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- function currentCatID(){
- global $wp_query;
- if(is_category() || is_single()){
- $cat_ID = get_query_var('cat');
- }
- return $cat_ID;
- }
- ?>
- <?php echo currentCatID(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement