Created
August 10, 2017 15:32
-
-
Save mjesusabarca/5806d0705f407cb715162d01680452da to your computer and use it in GitHub Desktop.
delete slider
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
| function milestone_lite_scripts() { | |
| wp_enqueue_style('milestone-lite-font', milestone_lite_font_url(), array()); | |
| wp_enqueue_style( 'milestone-lite-basic-style', get_stylesheet_uri() ); | |
| wp_enqueue_style( 'nivo-slider', get_template_directory_uri()."/css/nivo-slider.css" ); | |
| wp_enqueue_style( 'milestone-lite-responsive', get_template_directory_uri()."/css/responsive.css" ); | |
| wp_enqueue_style( 'font-awesome', get_template_directory_uri()."/css/font-awesome.css" ); | |
| wp_enqueue_script( 'jquery-nivo-slider', get_template_directory_uri() . '/js/jquery.nivo.slider.js', array('jquery') ); | |
| wp_enqueue_script( 'milestone-lite-editable', get_template_directory_uri() . '/js/editable.js' ); | |
| if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { | |
| wp_enqueue_script( 'comment-reply' ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment