ACF_Admin::admin_enqueue_scriptspublicACF 5.0.0

Enqueues global admin styling.

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

Хуков нет.

Возвращает

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

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

$ACF_Admin = new ACF_Admin();
$ACF_Admin->admin_enqueue_scripts();

Список изменений

С версии 5.0.0 Введена.

Код ACF_Admin::admin_enqueue_scripts() ACF 6.4.2

public function admin_enqueue_scripts() {
	wp_enqueue_style( 'acf-global' );
	wp_enqueue_script( 'acf-escaped-html-notice' );

	wp_localize_script(
		'acf-escaped-html-notice',
		'acf_escaped_html_notice',
		array(
			'show_details' => __( 'Show details', 'acf' ),
			'hide_details' => __( 'Hide details', 'acf' ),
		)
	);
}