wpseo_options
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
yoast/inc/options/class-wpseo-options.php 211
return apply_filters( 'wpseo_options', $option_names );