WPSEO_Options::register_hooks()publicYoast 1.0

Register our hooks.

Метод класса: WPSEO_Options{}

Хуков нет.

Возвращает

null. Ничего (null).

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

$WPSEO_Options = new WPSEO_Options();
$WPSEO_Options->register_hooks();

Код WPSEO_Options::register_hooks() Yoast 22.4

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' ] );
}