mannieschumpert
11/5/2012 - 4:56 PM

Remove "Preview" button from Custom Post type edit page

Remove "Preview" button from Custom Post type edit page

// Hide "Preview" button
function hide_preview_button()
{
    global $current_screen;
    if ( 'CUSTOM_POST_TYPE' == $current_screen->post_type ) {
          echo '<style>#preview-action,.updated a{display:none;}</style>';
        }
}
add_action('admin_head', 'hide_preview_button');