Advertisement
soulwon

functions.php

Jun 28th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. <?php
  2. function add_theme_scripts() {
  3.   wp_enqueue_style( 'style', get_stylesheet_uri() );
  4.  
  5.    wp_enqueue_script( 'menu', get_template_directory_uri() . '/js/menu.js', array ( 'jquery' ), 1.1, true);
  6.  
  7.     if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
  8.       wp_enqueue_script( 'comment-reply' );
  9.     }
  10. }
  11. add_action( 'wp_enqueue_scripts', 'add_theme_scripts' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement