wp
Apr 6, 2018
WP - Add custom js
JS file:
(function($) {
$(document).ready(function() {
});
})(jQuery);
PHP (in functions.php):
function wptuts_scripts_with_jquery() {
wp_enqueue_script( 'custom-script', get_stylesheet_directory_uri() . '/js/test.js', array( 'jquery' ));
}
add_action( 'wp_enqueue_scripts', 'wptuts_scripts_with_jquery' );Jun 6, 2016
Getting Font Awesome into Your WordPress Project
Link to the third party hosted CDN (over at MaxCDN)
//enqueues our external font awesome stylesheet
function enqueue_our_required_stylesheets(){
wp_enqueue_style('font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css');
}
add_action('wp_enqueue_scripts','enqueue_our_required_stylesheets');