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

Filter: wpseo_options - Allow developers to change the option name to include.

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

add_filter( 'wpseo_options', 'wp_kama_wpseo_options_filter' );

/**
 * Function for `wpseo_options` filter-hook.
 * 
 * @param array $option_names The option names to include in get_all and reset().
 *
 * @return array
 */
function wp_kama_wpseo_options_filter( $option_names ){

	// filter...
	return $option_names;
}
$option_names(массив)
The option names to include in get_all and reset().

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

WPSEO_Options::get_option_names()
wpseo_options
yoast/inc/options/class-wpseo-options.php 209
return apply_filters( 'wpseo_options', $option_names );

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

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