Skip to content

Instantly share code, notes, and snippets.

@Yeadh
Last active April 11, 2016 19:59
Show Gist options
  • Save Yeadh/8996f921d1353c6dc9f103c901c9db51 to your computer and use it in GitHub Desktop.
Save Yeadh/8996f921d1353c6dc9f103c901c9db51 to your computer and use it in GitHub Desktop.
Regester scripts and styles in function.php
function add_function_name(){
//regester script from wordpress
wp_enqueue_script( 'jquery');
wp_enqueue_script( 'jquery-masonry');
//regester styles
wp_enqueue_style( 'cluster-main', get_stylesheet_uri() );
wp_enqueue_style( 'cluster-bootstrap', get_template_directory_uri() . '/css/bootstrap.min.css');
//regester scripts
wp_enqueue_script( 'cluster-bootstrap', get_template_directory_uri() . '/js/bootstrap.min.js');
}
add_action('wp_enqueue_scripts','add_function_name');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment