Last active
March 2, 2016 21:47
-
-
Save EvanHerman/4a23d7405ff3c55a68a9 to your computer and use it in GitHub Desktop.
Enqueue Parent Theme Style + Animate.css from child theme root
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 | |
add_action( 'wp_enqueue_scripts', 'my_enqueue_assets' ); | |
function my_enqueue_assets() { | |
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); | |
wp_enqueue_style( 'animate-css', get_stylesheet_directory_uri() . '/animate.min.css' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment