Skip to content

Instantly share code, notes, and snippets.

@rohitink
Last active December 15, 2016 17:43
Show Gist options
  • Save rohitink/378becad27e0527959c7f8a703b73116 to your computer and use it in GitHub Desktop.
Save rohitink/378becad27e0527959c7f8a703b73116 to your computer and use it in GitHub Desktop.
Functions.php for Child Themes.
<?php function market_child_scripts() {
wp_enqueue_style( 'market-child-theme-style', get_stylesheet_directory_uri() . '/assets/css/default-custom.css', array(), null );
}
add_action( 'wp_enqueue_scripts', 'market_child_scripts', 30 ); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment