Last active
August 29, 2015 14:08
-
-
Save grappler/04c1ba01a74e0f15afa8 to your computer and use it in GitHub Desktop.
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 scripts and styles. | |
*/ | |
function presentation_lite_parent_scripts() { | |
wp_enqueue_style( 'presentation-lite-parent-style', get_template_directory_uri() . '/style.css' ); | |
} | |
add_action( 'wp_enqueue_scripts', 'presentation_lite_parent_scripts', 9 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment