Comma seperated list of ID’s as an array?

WP has a lot of nifty functions in the corners for such stuff. Try this:

if ( !empty( $categories ) ) {

    $excluded_categories = wp_list_pluck( $categories, 'term_id');
    $excluded_categories = implode(',', $excluded_categories);
}

Leave a Comment