Skip to content

Instantly share code, notes, and snippets.

@joel-thompson
Created October 7, 2016 00:34
Show Gist options
  • Save joel-thompson/e8d4dfea10b677e89dc622b0e19bd4ef to your computer and use it in GitHub Desktop.
Save joel-thompson/e8d4dfea10b677e89dc622b0e19bd4ef to your computer and use it in GitHub Desktop.
functions.php before attributes
<?php
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
function my_theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment