multiple category display
-
hello, I am looking to display multiple categories in my feed. I have a filter but I can only get it to display one. would someone know how I could display more than one?
add_filter( ‘feedzy_item_filter’, ‘add_feedzy_item_category’, 20, 2 );
function add_feedzy_item_category( $itemArray, $item) {
if ( $category = $item->get_category() );
if( $category->get_term() )
$itemArray[‘item_meta’] .= ‘Category: ‘ . $category->get_term() . ‘‘;return $itemArray;
}
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘multiple category display’ is closed to new replies.