custom post test
test
// Register Custom Status function title_post_status() { $args = array( 'label' => _x( 'title', 'Status General Name', 'realhome' ), 'label_count' => _n_noop( 'title (%s)', 'titles (%s)', 'realhome' ), 'public' => true, 'show_in_admin_all_list' => true, 'show_in_admin_status_list' => true, 'exclude_from_search' => false, ); register_post_status( 'title', $args ); } add_action( 'init', 'title_post_status', 0 );