Custom Post Type Support
function my_aps_supported_post_types( $post_types ) {
$post_types[] = 'my_custom_post_type';
return $post_types;
}
add_filter( 'aps_supported_post_types', 'my_aps_supported_post_types' );Last updated
function my_aps_supported_post_types( $post_types ) {
$post_types[] = 'my_custom_post_type';
return $post_types;
}
add_filter( 'aps_supported_post_types', 'my_aps_supported_post_types' );Last updated