Carbon_Fields\Container\Post_Meta_Container::show_on_category PHP Method

show_on_category() public method

Show the container only on posts from the specified category.
See also: show_on_taxonomy_term()
public show_on_category ( string $category_slug ) : object
$category_slug string
return object $this
    public function show_on_category($category_slug)
    {
        $this->settings['show_on']['category'] = $category_slug;
        return $this->show_on_taxonomy_term($category_slug, 'category');
    }