WPSEO_Options::register_hooks
Register our hooks.
Метод класса: WPSEO_Options{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$WPSEO_Options = new WPSEO_Options(); $WPSEO_Options->register_hooks();
Код WPSEO_Options::register_hooks() WPSEO Options::register hooks Yoast 27.6
public function register_hooks() {
add_action( 'registered_taxonomy', [ $this, 'clear_cache' ] );
add_action( 'unregistered_taxonomy', [ $this, 'clear_cache' ] );
add_action( 'registered_post_type', [ $this, 'clear_cache' ] );
add_action( 'unregistered_post_type', [ $this, 'clear_cache' ] );
}