Created
December 9, 2014 14:54
-
-
Save jerrylee/d1001c9a87a73ff156d3 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
<?php | |
function enqueue_scripts() { | |
wp_enqueue_script('bootsrap_script',get_template_directory_uri() . '/js/bootstrap.js',array(jquery),'1.0',true); | |
wp_enqueue_script('custom_script',get_template_directory_uri() . '/js/scripts.js',array(jquery),'1.0',true); | |
} | |
add_action('wp_enqueue_scripts','enqueue_scripts'); | |
function enqueue_styles() { | |
wp_enqueue_style('bootstrap_styles', get_template_directory_uri() . '/css/bootstrap.css'); | |
wp_enqueue_style('custom_styles', get_template_directory_uri() . '/css/styles.css'); | |
} | |
add_action('wp_enqueue_scripts', 'enqueue_styles'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment