tvstream_status
custom post status- tv Stream
if ( ! function_exists('tv_status') ) { // Register Custom Status function tv_status() { $args = array( 'label' => _x( 'tvstatus_ok', 'Status General Name', 'text_domain' ), 'label_count' => _n_noop( 'TV Stream Active (%s)', 'TV Stream Active (%s)', 'text_domain' ), 'public' => true, 'show_in_admin_all_list' => true, 'show_in_admin_status_list' => true, 'exclude_from_search' => false, ); register_post_status( 'tvstatus_ok', $args ); } // Hook into the 'init' action add_action( 'init', 'tv_status', 0 ); }