EP_Config::get_indexable_post_types PHP 메소드

get_indexable_post_types() 공개 메소드

Returns indexable post types for the current site
부터: 0.9
public get_indexable_post_types ( ) : mixed | void
리턴 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);
    }