Skip to content

Instantly share code, notes, and snippets.

@gofishwbeeler
Last active April 2, 2019 20:08
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 gofishwbeeler/f2ae5dec345a4e26fd31c526b57d774b to your computer and use it in GitHub Desktop.
Save gofishwbeeler/f2ae5dec345a4e26fd31c526b57d774b to your computer and use it in GitHub Desktop.
Loads a specific stylesheet for your Wordpress theme
function gfd_stylesheets()
{
wp_enqueue_style('my-theme-css', get_template_directory_uri() . '/styles.css', array(), '1.0.0', 'all');
}
add_action('wp_print_styles', 'gfd_stylesheets', PHP_INT_MAX);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment