Inpsyde\MultilingualPress\Module\CustomPostTypeSupport\URLFilter::is_draft_or_pending PHP Метод

is_draft_or_pending() приватный Метод

Checks if the given post is a draft or pending.
private is_draft_or_pending ( WP_Post $post ) : boolean
$post WP_Post Post object.
Результат boolean Whether or not the given post is a draft or pending.
    private function is_draft_or_pending($post)
    {
        if (empty($post->post_status)) {
            return false;
        }
        return in_array($post->post_status, ['draft', 'pending', 'auto-draft'], true);
    }