Custom post types as the focus
-
Hi, great plugin BTW.
I am trying to use my own custom post types which are working fine: (see below)function load_post_types($types) {
$types[] = ‘casestudies’;
$types[] = ‘newsletters’;
$types[] = ‘videos’;
$types[] = ‘events’;
$types[] = ‘post’; // This is to pull all posts under any cat (is this right?)
return $types;
}
add_filter(‘s2_post_types’, ‘load_post_types’);What I would like to do is:
1. Give the user the ability to unsubscribe from those custom post types?
2. So remove the post categories and replace with custom post types as check boxes?Thanks in advance if you can point me in the right direction.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Custom post types as the focus’ is closed to new replies.