EP_Config::get_indexable_post_types PHP Method

get_indexable_post_types() public method

Returns indexable post types for the current site
Since: 0.9
public get_indexable_post_types ( ) : mixed | void
return mixed | void
    public function get_indexable_post_types()
    {
        $post_types = get_post_types(array('public' => true));
        return apply_filters('ep_indexable_post_types', $post_types);
    }