Skip to content

Instantly share code, notes, and snippets.

@amElnagdy
Last active December 29, 2016 14:43
Show Gist options
  • Save amElnagdy/d0a17c869dd7937ff541af8633a9fdfd to your computer and use it in GitHub Desktop.
Save amElnagdy/d0a17c869dd7937ff541af8633a9fdfd to your computer and use it in GitHub Desktop.
<?php
function my_theme_enqueue_styles() {
$parent_style = 'parent-style'; // This is 'twentysixteen-style' for the Twenty Sixteen theme.
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style ),
wp_get_theme()->get('Version')
);
}
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment