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'); } |
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'); } |