Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php foreach((get_the_category()) as $category) { echo $category->cat_name . ''; } ?>
- atau bisa juga ini:
- <?php
- $category = get_the_category();
- echo $category[0]->cat_name;
- ?>
- TAPI YANG BAGUS YAG PERTAMA
Add Comment
Please, Sign In to add comment