If you want to develop a Plugin that delete the Custom Post Type then have a look at the given source code.
<?php
<!--
Plugin Name: DB Cleaner
Version: 1.0
Author: <a href="http://anwarkhan.co.nf">Anwar</a>
-->
?>
<!-- Delete Custom Post Type -->
<?php
function remove_option_page(){
remove_menu_page('dit.php?post_type=movies');
}
add_action('admin_menu', 'remove_option_page', 99);
I am deleting Movies so code above is for movies.
Comments
Post a Comment