Add category to custom post type automatically, using category slug

wp_set_object_terms Works better with term slug instead of term id so change this line:

$cat = array($category->term_id);

to:

 $cat = array($category->slug);

Leave a Comment