Advertisement
pusatdata

WP-Trik: Memunculkan Nama atau ID Kategori

Oct 14th, 2016
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. Memunculkan nama kategori:
  2.  
  3. <?php
  4. $category = get_the_category();
  5. echo $category[0]->cat_name;
  6. ?>
  7.  
  8.  
  9. Memunculkan ID Kategori
  10.  
  11. <?php
  12. $category = get_the_category();
  13. echo $category[0]->cat_ID;
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement