WPSEO_Option_Titles::__construct()protectedYoast 1.0

Add the actions and filters for the option.

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

Хуков нет.

Возвращает

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

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->__construct();

Код WPSEO_Option_Titles::__construct() Yoast 22.4

protected function __construct() {
	parent::__construct();
	add_action( 'update_option_' . $this->option_name, [ 'WPSEO_Utils', 'clear_cache' ] );
	add_action( 'init', [ $this, 'end_of_init' ], 999 );

	add_action( 'registered_post_type', [ $this, 'invalidate_enrich_defaults_cache' ] );
	add_action( 'unregistered_post_type', [ $this, 'invalidate_enrich_defaults_cache' ] );
	add_action( 'registered_taxonomy', [ $this, 'invalidate_enrich_defaults_cache' ] );
	add_action( 'unregistered_taxonomy', [ $this, 'invalidate_enrich_defaults_cache' ] );

	add_filter( 'admin_title', [ 'Yoast_Input_Validation', 'add_yoast_admin_document_title_errors' ] );
}