Yoast\WP\SEO\Introductions\User_Interface

Introductions_Integration::register_hooks()publicYoast 1.0

Registers the action to enqueue the needed script(s).

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

Хуков нет.

Возвращает

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

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

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

Код Introductions_Integration::register_hooks() Yoast 24.4

public function register_hooks() {
	if ( $this->is_on_installation_page() ) {
		return;
	}
	\add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_assets' ] );
}