How to show some of category in wordpress

Try like

$args = array(  
    'hide_empty'               => 1,    
    'exclude'                  =>array(1,2,3) // desire id
); 

$categories = get_categories($args );

Hope it will help!