Employees Active Status
Active Status for Employee Post Type
// Register Custom Status function employees_active_status() { $args = array( 'label' => _x( 'active', 'Status General Name', 'text_domain' ), 'label_count' => _n_noop( 'Active (%s)', 'Actives (%s)', 'text_domain' ), 'public' => true, 'show_in_admin_all_list' => true, 'show_in_admin_status_list' => true, 'exclude_from_search' => false, ); register_post_status( 'active', $args ); } // Hook into the 'init' action add_action( 'init', 'employees_active_status', 0 );