proektor-statuses
// Register Custom Status
function add_payment_post_statuses() {
$args = array(
'label' => 'Успішно',
'label_count' => 'Успішні (%s)',
'public' => false,
'show_in_admin_all_list' => true,
'show_in_admin_status_list' => true,
'exclude_from_search' => true,
);
register_post_status( 'success', $args );
}
add_action( 'init', 'add_payment_post_statuses', 0 );