You can disable Markers Post Type:
1 2 3 4 |
add_action( 'init', 'my_unregister_post_type', 999 ); function my_unregister_post_type(){ unregister_post_type('locateanythingmarker'); } |
1 2 3 4 5 6 7 |
function change_post_type_visibility($args, $post_type) { if ($post_type === 'locateanythingmarker') { $args['public'] = true; } return $args; } add_filter('register_post_type_args', 'change_post_type_visibility', 10, 2); |