Requires PHP 5.5.9
A library which provides extended functionality to WordPress post type statuses.
composer require frozzare/wp-extended-post-status
<?php
// Register `old` status.
register_extended_post_status( 'old', [], [
'singular' => 'Old'
] );
// Register `obsolete` status.
register_extended_post_status( 'obsolete', [
// Array or string of post types where post status should be registered
'post_type' => ['post', 'page']
], [
'singular' => 'Obsolete'
] );
function register_extended_post_status( string $post_status, array $args = [], array $names = [] )
$post_status
is the name of the post status.$args
is a array of arguments for this post status, the same as forregister_post_status
pluspost_type
argument, which should be array or string of post types where post status should be registered ('any' can also be passed).$names
is a array ofsingular
andplural
that is used as names forlabel_count
if empty.
Differences from register_post_status
arguments:
public
hastrue
as default value instead offalse
show_in_admin_status_list
hastrue
as default value instead offalse
MIT © Fredrik Forsmo