hi I've got a problem with adding custom post status. I've put this code in functions.php:
function add_custom_status()
{
register_post_status( 'publish', array( 'label' => _x('Custom status label', 'post'),
'public' => true,
'_builtin' => true,
'label_count' => _n_noop('Custom status label <span class="count">(%s)</span>', 'Custom status label <span class="count">(%s)</span>')
) );
}
add_action('init', add_custom_status);
but custom status doesn't show in post status dropdown. Am I doing something wrong?