-
-
Save tommcfarlin/1db7c42108a4e5d60d5356044f1779be to your computer and use it in GitHub Desktop.
[WordPress] Optimizing Loading Assets in WordPress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
public function load() | |
{ | |
if ('dashboard' !== get_current_screen()->id) { | |
return; | |
} | |
wp_enqueue_style( | |
'acme-dashboard-style', | |
plugin_dir_url(\dirname(__DIR__)).'assets/css/acme-dashboard.css' | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment