Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 20 lines (13 sloc) 573 Bytes
<?php
/*
*
* Starterkit
* This is the functions.php files. If for whatever reason you would like to input new functions into cornerstone or tweak ones that are already created (view original theme for more information) you can use this functions.php to overwrite it. '
*
*/
function starterkit_scripts() {
wp_enqueue_script( 'starterkit-js', get_stylesheet_directory_uri() . '/javascripts/min/starterkit.min.js', array( 'jquery' ));
}
add_action( 'wp_enqueue_scripts', 'starterkit_scripts');
add_action( 'customize_register', 'starterkit_customize_register' );
?>