/*
* Remove add new from posts/pages (replace services)
*/
function hide_add_new_services()
{
global $submenu;
// replace my_type with the name of your post type
unset($submenu['edit.php?post_type=services'][10]);
}
add_action('admin_menu', 'hide_add_new_services');
function hide_services() {
if('services' == get_post_type()) {
echo '<style type="text/css">
#favorite-actions {display:none;}
.add-new-h2{display:none;}
.tablenav{display:none;}
</style>'; }
}
add_action('admin_head', 'hide_services');