Created
September 7, 2016 22:08
-
-
Save edward-jimenez/5283b2862d950ffd189ebb3a1a3ee18d to your computer and use it in GitHub Desktop.
Enqueue javascript and style sheets
This file contains hidden or 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
| //style and script information | |
| function erj_combined_styles_and_scripts() { | |
| wp_enqueue_script( 'erj-combined-javascripts', dirname(__FILE__) . '/js/erj-combined-scripts.js', array(), '1.0.0', true ); | |
| } | |
| add_action( 'wp_enqueue_scripts', 'erj_combined_styles_and_scripts' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment