Carbon_Fields\Container\Term_Meta_Container::is_valid_attach PHP Method

is_valid_attach() public method

Perform checks whether the container should be attached during the current request
public is_valid_attach ( ) : boolean
return boolean True if the container is allowed to be attached
    public function is_valid_attach()
    {
        if (isset($_GET['taxonomy']) && in_array($_GET['taxonomy'], $this->settings['taxonomy'])) {
            return true;
        }
        return false;
    }