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