You appear to be a bot. Output may be restricted
Description
Exclude the post type from the indexable table.
Usage
$array = Abstract_Exclude_Post_Type::exclude_post_types( $excluded_post_types );
Parameters
- $excluded_post_types
- ( array ) required – The excluded post types.
Returns
array The excluded post types, including the specific post type.
Source
File name: wordpress-seo/src/integrations/abstract-exclude-post-type.php
Lines:
1 to 3 of 3
public function exclude_post_types( $excluded_post_types ) { return \array_merge( $excluded_post_types, $this->get_post_type() ); }