When you create custom post types in your WordPress site, you may also create custom categories for the new custom post types. To associate the new custom category taxonomy with the custom post types (for example, to use the new categories in the breadcrumbs of the custom posts), you can add the following code snippet filter into your child theme, typically in the functions.php file:
add_filter( 'pixfort/custom_types/categories', 'custom_categories_filter', 40, 1 );
function custom_categories_filter($customCats) {
$new = array(
'post_slug' => 'category_slug'
);
return array_merge( $customCats, $new );
}*Where “post_slug“ is the slug of the custom post type and “category_slug“ is the slug of the categories of this custom post type.
** If you have multiple custom post types you just need to input each custom post type values in a new line inside $new array.