home
wowwwwwww
// Register Custom Status function post1() { $args = array( 'label' => _x( 'home', 'Status General Name', 'text_domain' ), 'label_count' => _n_noop( 'home (%s)', 'homes (%s)', 'text_domain' ), 'public' => true, 'show_in_admin_all_list' => true, 'show_in_admin_status_list' => true, 'exclude_from_search' => true, ); register_post_status( 'home', $args ); } // Hook into the 'init' action add_action( 'init', 'post1', 0 );