Skip to content

Instantly share code, notes, and snippets.

@FreshLondon
Last active January 26, 2019 11:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FreshLondon/6655b3fa8fcf7320861e1a3a7e325314 to your computer and use it in GitHub Desktop.
Save FreshLondon/6655b3fa8fcf7320861e1a3a7e325314 to your computer and use it in GitHub Desktop.
WordPress loaded scripts and styles
<!-- default theme stylesheet is loading here -->
<link rel='stylesheet' id='freshlondon-style-css' href='https://freshlondon.biz/wp-content/themes/freshlondon/style.css?ver=5.0.3' type='text/css' media='all' />
<!-- ..and then the stylesheets that had style.css as their dependancy-->
<link rel='stylesheet' id='extra-fonts-css' href='https://freshlondon.biz/wp-content/themes/freshlondon/fonts/fonts.css?ver=1548499243' type='text/css' media='screen' />
<!-- Did you notice the line above where it said 'fonts.css?ver=1548499243' <- this is the result of the PHP time() function we used! -->
<link rel='stylesheet' id='gist-styles-css' href='https://freshlondon.biz/wp-content/themes/freshlondon/assets/stylesheets/tomorrow-night.css?ver=5.0.3' type='text/css' media='screen' />
<link rel='stylesheet' id='owl-carousel-css' href='https://freshlondon.biz/wp-content/themes/freshlondon/assets/stylesheets/owl.carousel.min.css?ver=5.0.3' type='text/css' media='screen' />
<link rel='stylesheet' id='owl-carousel-theme-css' href='https://freshlondon.biz/wp-content/themes/freshlondon/assets/stylesheets/owl.theme.default.min.css?ver=5.0.3' type='text/css' media='screen' />
<!-- jQuery is loading here -->
<script type='text/javascript' src='https://freshlondon.biz/wp-content/themes/freshlondon/assets/js/jquery.min.js?ver=3.1.0'></script>
<!-- ..and then the script that had jQuery as its dependancy -->
<script type='text/javascript' src='https://freshlondon.biz/wp-content/themes/freshlondon/assets/js/owl.carousel.js?ver=1.0'></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment