Last active
July 16, 2018 16:47
-
-
Save mustafix/c4031d7cd1d304cd88d33eb8fb8f2a34 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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