wp_insert_post custom taxonomy

wp_set_post_terms() function will only work on the native post type.

For a taxonomy on a custom post type use wp_set_object_terms().

Change your code to:

wp_set_object_terms( $pid, $_POST['cat'], 'books-categories', false );
wp_set_object_terms( $pid, $_POST['location'], 'location', false );

Leave a Comment