Skip to content

Instantly share code, notes, and snippets.

@Abd-Ur-Rehman
Created December 24, 2016 22:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Abd-Ur-Rehman/2e815dee0abb0ebf4c92221bdd2f93f3 to your computer and use it in GitHub Desktop.
Save Abd-Ur-Rehman/2e815dee0abb0ebf4c92221bdd2f93f3 to your computer and use it in GitHub Desktop.
Create a child theme in WordPress
<?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