I’m using a plugin to create custom post types so i guess i will just have to wait for the pro version is there a beta we can look into in a previous post you provided this
”
the new version is still not public, but if you want you can try the beta version 0.1.5.1 that you can download with this link: https://downloads.www.ads-software.com/plugin/specific-content-for-mobile.0.1.5.1.zip
add_filter( 'eos_scfm_post_types','my_custom_scfm_post_types' );
//It adds custtom post types to the array of post types managed by Specific Content For Mobile
function my_custom_scfm_post_types( $post_types ){
$post_types[] = 'custom_post_slug';
return $post_types;
}
”
will this still work?