Posted By


nachuge on 04/30/11

Tagged


Statistics


Viewed 60 times
Favorited by 0 user(s)

içerik yokken kategori bilgileri almak


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. function getCurrentCatID(){
  2. global $wp_query;
  3. if(is_category() || is_single()){
  4. $cat_ID = get_query_var('cat');
  5. }
  6. return $cat_ID;
  7. }
  8.  
  9. //To get the full category object, try this:
  10. $cat = get_category(get_query_var('cat'),false);

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.