Declined
if ( ! function_exists('sr_custom_post_status_declined') ) {
// Register Custom Status
function sr_custom_post_status_declined() {
$args = array(
'label' => _x( 'Suspended', 'Status General Name', 'text_domain' ),
'label_count' => _n_noop( 'Suspended (%s)', 'Suspended (%s)', 'text_domain' ),
'public' => false,
'show_in_admin_all_list' => true,
'show_in_admin_status_list' => true,
'exclude_from_search' => true,
);
register_post_status( 'suspend', $args );
}
add_action( 'init', 'sr_custom_post_status_declined', 0 );
}