Skip to content

Instantly share code, notes, and snippets.

@Edwardtonnn
Created September 8, 2018 20:56
Show Gist options
  • Save Edwardtonnn/d6b98bc8bd5c3d4ce13a74af2b122787 to your computer and use it in GitHub Desktop.
Save Edwardtonnn/d6b98bc8bd5c3d4ce13a74af2b122787 to your computer and use it in GitHub Desktop.
<?php
add_action ('wp_enqueue_scripts', 'load_custom_styles');
function load_custom_styles() {
wp_enqueue_style(
'custom',
get_template_directory_uri() . '/css/custom.css'
);
wp_enqueue_script(
'custom-script',
get_template_directory_uri() . '/js/custom.js',
array ( 'jquery' ),
false,
"all");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment