Skip to content

Instantly share code, notes, and snippets.

@edward-jimenez
edward-jimenez / gist:5283b2862d950ffd189ebb3a1a3ee18d
Created September 7, 2016 22:08
Enqueue javascript and style sheets
//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' );