wpseo_change_applicable_filters хук-фильтрYoast 1.0

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_Meta_Columns::collect_filters()
wpseo_change_applicable_filters
yoast/admin/class-meta-columns.php 451
return apply_filters( 'wpseo_change_applicable_filters', $active_filters );

Где используется хук в Yoast SEO

Использование не найдено.