wpseo_option_titles_variable_array_key_patterns
Allow altering the array with variable array key patterns.
Использование
add_filter( 'wpseo_option_titles_variable_array_key_patterns', 'wp_kama_wpseo_option_titles_variable_array_key_patterns_filter' );
/**
* Function for `wpseo_option_titles_variable_array_key_patterns` filter-hook.
*
* @param array $patterns Array with the variable array key patterns.
*
* @return array
*/
function wp_kama_wpseo_option_titles_variable_array_key_patterns_filter( $patterns ){
// filter...
return $patterns;
}
- $patterns(массив)
- Array with the variable array key patterns.
Где вызывается хук
wpseo_option_titles_variable_array_key_patterns
yoast/inc/options/class-wpseo-option-titles.php 906
$patterns = apply_filters( 'wpseo_option_titles_variable_array_key_patterns', $patterns );