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

Allows altering the separator options array.

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

add_filter( 'wpseo_separator_option_list', 'wp_kama_wpseo_separator_option_list_filter' );

/**
 * Function for `wpseo_separator_option_list` filter-hook.
 * 
 * @param array $separators Array with the separator options.
 *
 * @return array
 */
function wp_kama_wpseo_separator_option_list_filter( $separators ){

	// filter...
	return $separators;
}
$separators(массив)
Array with the separator options.

Где вызывается хук

WPSEO_Option_Titles::get_separator_option_list()
wpseo_separator_option_list
yoast/inc/options/class-wpseo-option-titles.php 1038
$separator_list = apply_filters( 'wpseo_separator_option_list', $separators );

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

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