ACF_Admin_Internal_Post_Type::admin_enqueue_scriptspublicACF 5.0.0

Enqueues any scripts necessary for internal post type.

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

Хуков нет.

Возвращает

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

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

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

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

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

Код ACF_Admin_Internal_Post_Type::admin_enqueue_scripts() ACF 6.4.2

public function admin_enqueue_scripts() {
	wp_enqueue_script( 'acf-internal-post-type' );

	wp_dequeue_script( 'autosave' );
	wp_enqueue_style( $this->post_type );
	wp_enqueue_script( $this->post_type );
}