Skip to content

Instantly share code, notes, and snippets.

@noxify
Forked from nearfal08/functions.php
Created May 20, 2020 15:57
Show Gist options
  • Save noxify/9d3ac6461ae05787b56164caefa4d94b to your computer and use it in GitHub Desktop.
Save noxify/9d3ac6461ae05787b56164caefa4d94b to your computer and use it in GitHub Desktop.
<?php
function loadCss() {
wp_enqueue_style('bootstrap', 'https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css');
}
function loadJavascript() {
wp_deregister_script('jquery');
wp_enqueue_script('jquery', 'https://code.jquery.com/jquery-3.5.1.slim.min.js', array(), null, true);
wp_enqueue_script('popperjs', 'https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js', array('jquery'), false, true);
wp_enqueue_script('bootstrapjs', 'https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js', array('jquery'), false, true);
}
add_action('wp_enqueue_scripts', 'loadCss');
add_action('wp_enqueue_scripts', 'loadJavascript');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment