Created
June 23, 2021 19:16
-
-
Save caseymilne/bff6cf6205579d54cbd337d269c1d070 to your computer and use it in GitHub Desktop.
Enqueue Theme CSS
This file contains hidden or 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
| <?php | |
| // Enqueue Theme CSS. | |
| add_action( 'wp_enqueue_scripts', 'reflex_css' ); | |
| function reflex_css() { | |
| wp_enqueue_style( | |
| 'reflex-main-style', | |
| get_stylesheet_directory_uri() . '/style.css', | |
| [], | |
| time() | |
| ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment