Skip to content

Instantly share code, notes, and snippets.

@lelandf
Last active July 30, 2016 00:14
Show Gist options
  • Save lelandf/e97c9b09f2a7418afb33daf28f9e4d12 to your computer and use it in GitHub Desktop.
Save lelandf/e97c9b09f2a7418afb33daf28f9e4d12 to your computer and use it in GitHub Desktop.
Owari Child Theme Functions
<?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