Settings.php 242 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 <?php namespace AC\Admin\Asset; use AC\Asset\Script; class Settings extends Script { public function register() { parent::register(); $this->add_inline_variable( 'AC', [ '_ajax_nonce' => wp_create_nonce( 'ac-ajax' ), ] ); } }