We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, this is set to load at priority 10 (default on every WordPress hook).
10
Add the ability to set the hook priority via app/Config/app.php file, like:
app/Config/app.php
return [ 'assets' => [ 'enqueue_priority' => 15, ], ];
The text was updated successfully, but these errors were encountered:
#24 Autoenqueue priority.
9d0247c
Added priority, configurable as:
return [ 'autoenqueue' => [ // Enables or disables auto-enqueue of assets 'enabled' => true, // Enqueue priority 'priority' => 15, // Assets to auto-enqueue 'assets' => [], ], ];
Sorry, something went wrong.
amostajo
No branches or pull requests
Currently, this is set to load at priority
10
(default on every WordPress hook).Add the ability to set the hook priority via
app/Config/app.php
file, like:The text was updated successfully, but these errors were encountered: