Advertisement
ridgey28

WP RSS - Get Categories

Jan 17th, 2016
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. <?php
  2.  
  3. /****
  4. WordPress SimplePie. Display Categories from RSS Feed - http://www.worldoweb.co.uk/2012/display-wordpress-posts-on-another-wp-blog
  5. Please note that Tags may also be displayed as categories within the RSS feed
  6. ****/
  7.  
  8.  
  9. /*Add inside the main foreach loop*/
  10.  
  11. foreach ($item->get_categories() as $category)
  12.     {
  13.         echo  '<span>'.$category->get_label().'</span>';//Replace HTML elements with your own
  14.     }
  15.  
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement