Last active
January 3, 2020 19:59
-
-
Save vanaf1979/269217f9f28eb72fe3508227bc0283f6 to your computer and use it in GitHub Desktop.
Add a action to enqueue stylesGist for my "WorpdPress: Css Styles and Javascripts in theme development (In depth)" article: https://since1979.dev/wordpress-css-styles-and-javascripts-in-theme-development-in-depth/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel='stylesheet' id='my-theme-purecss-css' href='https://unpkg.com/purecss@1.0.0/build/pure-min.css?ver=1.0.0' type='text/css' media='screen' /> | |
<!--[if lte IE 8]> | |
<link rel='stylesheet' id='my-theme-purecss-ie8-css' href='https://unpkg.com/purecss@1.0.0/build/grids-responsive-old-ie-min.css?ver=1.0.0' type='text/css' media='screen' /> | |
<![endif]--> | |
<!--[if gt IE 8]> | |
<link rel='stylesheet' id='my-theme-purecss-ie9-css' href='https://unpkg.com/purecss@1.0.0/build/grids-responsive-min.css?ver=1.0.0' type='text/css' media='screen' /> | |
<![endif]--> | |
<link rel='stylesheet' id='my-theme-styles-css' href='http://example.com/wp-content/themes/themename/style.css?ver=1.0.0' type='text/css' media='screen' /> | |
<style id='my-theme-inline-css-inline-css' type='text/css'> | |
* { color: red; } | |
</style> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment