Skip to content

Instantly share code, notes, and snippets.

@caseymilne
Created June 23, 2021 19:16
Show Gist options
  • Select an option

  • Save caseymilne/bff6cf6205579d54cbd337d269c1d070 to your computer and use it in GitHub Desktop.

Select an option

Save caseymilne/bff6cf6205579d54cbd337d269c1d070 to your computer and use it in GitHub Desktop.
Enqueue Theme CSS
<?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