Created
October 26, 2016 03:13
-
-
Save mathetos/cbe156e96eb261acbdab62d4c70ee2df to your computer and use it in GitHub Desktop.
Enqueue Global Stylesheet
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 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