Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. // register main stylesheet
  2. $file = '/library/css/style.css';
  3. $lastmod = filemtime( get_stylesheet_directory() . $file );
  4. wp_register_style( 'main-theme-style', get_stylesheet_directory_uri() . $file, array(), $lastmod, 'all' );
  5.  
  6. $file = '/library/js/scripts.js';
  7. $lastmod = filemtime( get_stylesheet_directory() . $file );
  8. wp_register_script( 'main-theme-js', get_stylesheet_directory_uri() . $file, array( 'jquery' ), $lastmod, true );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement