wpseo_indexable_forced_included_post_types
Filter: wpseo_indexable_forced_included_post_types Allows force including posts of a certain post type to be saved to the indexable table.
Использование
add_filter( 'wpseo_indexable_forced_included_post_types', 'wp_kama_wpseo_indexable_forced_included_post_types_filter' ); /** * Function for `wpseo_indexable_forced_included_post_types` filter-hook. * * @param array $included_post_types The currently included post types that indexables will be created for. * * @return array */ function wp_kama_wpseo_indexable_forced_included_post_types_filter( $included_post_types ){ // filter... return $included_post_types; }
- $included_post_types(массив)
- The currently included post types that indexables will be created for.
Где вызывается хук
wpseo_indexable_forced_included_post_types
yoast/src/helpers/post-type-helper.php 181
$filtered_included_post_types = \apply_filters( 'wpseo_indexable_forced_included_post_types', $included_post_types );