Skip to content

Instantly share code, notes, and snippets.

@mustafix
Last active July 16, 2018 16:47
Show Gist options
  • Save mustafix/c4031d7cd1d304cd88d33eb8fb8f2a34 to your computer and use it in GitHub Desktop.
Save mustafix/c4031d7cd1d304cd88d33eb8fb8f2a34 to your computer and use it in GitHub Desktop.
<?php
if ( ! function_exists( 'theme_function_name' ) ) :
function theme_function_name(){
// style sheet dynamic
wp_enqueue_style('bootstrap', get_template_directory_uri().'/css/bootstrap.min.css', array(), '3.1.0', 'all');
wp_enqueue_style('flipmart-main-css', get_stylesheet_uri() );
// java-script dynamic
wp_enqueue_script('bootstrap-js', get_template_directory_uri().'/js/bootstrap.min.js', array('true'), '3.1.0', true);
// jquery dynamic
wp_enqueue_script('jquery');
}
add_action('wp_enqueue_scripts', 'theme_function_name');
endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment