Last active
July 30, 2016 00:14
-
-
Save lelandf/e97c9b09f2a7418afb33daf28f9e4d12 to your computer and use it in GitHub Desktop.
Owari Child Theme Functions
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 | |
/** | |
* Owari Custom Footer Text functions | |
* | |
* @package Owari Custom Footer Text | |
*/ | |
/** | |
* Enqueue styles. | |
*/ | |
function owari_custom_footer_text_styles() { | |
// Load the parent theme stylesheet | |
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); | |
// Dequeue ceremonial child theme stylesheet | |
wp_dequeue_style( 'owari-style' ); | |
} // end function owari_custom_footer_text_styles | |
add_action( 'wp_enqueue_scripts', 'owari_custom_footer_text_styles', 11 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment