Skip to content

Instantly share code, notes, and snippets.

@mathetos
Created October 26, 2016 03:13
Show Gist options
  • Save mathetos/cbe156e96eb261acbdab62d4c70ee2df to your computer and use it in GitHub Desktop.
Save mathetos/cbe156e96eb261acbdab62d4c70ee2df to your computer and use it in GitHub Desktop.
Enqueue Global Stylesheet
<?php
// Enqueue this stylesheet globally for the front-end
add_action( 'wp_enqueue_scripts', 'themeslug_enqueue_style' );
function themeslug_enqueue_style() {
wp_enqueue_style( 'my-theme-css', 'style.css', 'parent-stylesheet', '1.0', all );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment