lmartins
11/27/2014 - 8:02 PM

Hides the preview button on lists and edit screens for custom post types

Hides the preview button on lists and edit screens for custom post types

/**
 * Esconder as opções de pré-visualização no front-end para Banners
 * @return [type] [description]
 */
function posttype_admin_css() {
    global $post_type;
    $post_types = array(
                        /* set post types */
                        'banners',
                  );
    if(in_array($post_type, $post_types))
    echo '<style type="text/css">span.view, #post-preview, #view-post-btn{display: none;}</style>';
}
add_action( 'admin_head-post-new.php', 'posttype_admin_css' );
add_action( 'admin_head-post.php', 'posttype_admin_css' );
add_action( 'admin_head-edit.php', 'posttype_admin_css' );