wpseo_change_applicable_filters
Adapt the active applicable filters on the posts overview.
Использование
add_filter( 'wpseo_change_applicable_filters', 'wp_kama_wpseo_change_applicable_filters_filter' ); /** * Function for `wpseo_change_applicable_filters` filter-hook. * * @param array $active_filters The current applicable filters. * * @return array */ function wp_kama_wpseo_change_applicable_filters_filter( $active_filters ){ // filter... return $active_filters; }
- $active_filters(массив)
- The current applicable filters.
Где вызывается хук
wpseo_change_applicable_filters
yoast/admin/class-meta-columns.php 451
return apply_filters( 'wpseo_change_applicable_filters', $active_filters );