Created
November 26, 2016 00:30
-
-
Save bonjmartn/884e8a75cab3345a92bd9df9b149625a to your computer and use it in GitHub Desktop.
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
function theme_styles() { | |
wp_enqueue_style( 'main_css', get_template_directory_uri() . '/style.css' ); | |
} | |
add_action( 'wp_enqueue_scripts', 'theme_styles'); | |
function theme_js() { | |
global $wp_scripts; | |
wp_enqueue_script( 'my_custom_js', get_template_directory_uri() . '/js/scripts.js'); | |
} | |
add_action( 'wp_enqueue_scripts', 'theme_js'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment