Reputation:
Hide/Remove custom Post Type options in Wordpress
Upvotes: 0
Views: 1607
Reputation: 501
what you are looking i think its to remove what we call "Meta Box" inside the wordpress
http://codex.wordpress.org/Function_Reference/add_meta_box
look inside you theme files for "add_meta_box" method the are related with the post_type you trying to change.
http://codex.wordpress.org/Plugin_API/Action_Reference/add_meta_boxes
make a find inside you theme folder for this "adding_custom_meta_boxes"
this method its gonna be followed by the name of the custom type you're trying to change.
adding_custom_meta_boxes( $post_type
Hope that help :)
Upvotes: 1