RW_Meta_Box::is_shown PHP Method

is_shown() protected method

- 1st filter applies to all meta boxes - 2nd filter applies to only current meta box
protected is_shown ( ) : boolean
return boolean
    protected function is_shown()
    {
        $show = apply_filters('rwmb_show', true, $this->meta_box);
        return apply_filters("rwmb_show_{$this->meta_box['id']}", $show, $this->meta_box);
    }