CPT in Recent Posts

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.

Scratch that, managed to work it out!

For Reference:

function add_event_post_type( $types ) {
$types[‘app’] = ‘app’;
$types[‘website’] = ‘website’;

return $types;
}
add_filter( ‘cs_recent_posts_post_types’, ‘add_event_post_type’, 999 );

Glad it’s working now, cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.