remove static can script call and replace it with local js
This commit is contained in:
parent
0b825c0621
commit
df9ebebc85
|
@ -50,7 +50,6 @@ $container = get_theme_mod( 'understrap_container_type' );
|
|||
</div><!-- wrapper end -->
|
||||
|
||||
</div><!-- #page -->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
|
||||
<?php wp_footer(); ?>
|
||||
|
||||
</body>
|
||||
|
|
|
@ -14,6 +14,7 @@ if ( ! function_exists( 'understrap_scripts' ) ) {
|
|||
$the_theme = wp_get_theme();
|
||||
wp_enqueue_style( 'understrap-styles', get_stylesheet_directory_uri() . '/css/theme.min.css', array(), $the_theme->get( 'Version' ) );
|
||||
wp_enqueue_script( 'jquery' );
|
||||
wp_enqueue_script( 'popper-scripts', get_template_directory_uri() . '/js/popper.min.js', array(), false);
|
||||
wp_enqueue_script( 'understrap-scripts', get_template_directory_uri() . '/js/theme.min.js', array(), $the_theme->get( 'Version' ), true );
|
||||
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
|
||||
wp_enqueue_script( 'comment-reply' );
|
||||
|
|
Reference in New Issue