I have added this code to my child theme functions.php
function add_event_post_type( $types ) {
$types[‘post_type_name’] = ‘app’;
return $types;
}
add_filter( ‘cs_recent_posts_post_types’, ‘add_event_post_type’, 999 );
Is there a way i can add more CPT’s to this? I would like to have 3 different CPT’s available.