WP_Scripts::__construct()publicWP 2.6.0

Constructor.

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

Хуков нет.

Возвращает

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

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

global $wp_scripts;
$wp_scripts->__construct();

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

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

Код WP_Scripts::__construct() WP 6.5.2

public function __construct() {
	$this->init();
	add_action( 'init', array( $this, 'init' ), 0 );
}