Skip to content

Instantly share code, notes, and snippets.

@alexpani
Created October 30, 2016 20:23
Show Gist options
  • Save alexpani/7ce46d2f011edd70f1f701a2e1939c14 to your computer and use it in GitHub Desktop.
Save alexpani/7ce46d2f011edd70f1f701a2e1939c14 to your computer and use it in GitHub Desktop.
//* Add custom.css
add_action( 'wp_enqueue_scripts', 'an_custom_css' );
function an_custom_css() {
wp_enqueue_style( 'custom-css-stylesheet', CHILD_URL . '/custom.css', array(), PARENT_THEME_VERSION );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment