Advertisement
soulwon

loading style

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