Skip to content

Instantly share code, notes, and snippets.

View Abd-Ur-Rehman's full-sized avatar
🎯
👨‍💻Living and breathing in code...

Abd Ur Rehman Abd-Ur-Rehman

🎯
👨‍💻Living and breathing in code...
View GitHub Profile
@Abd-Ur-Rehman
Abd-Ur-Rehman / functions.php
Created December 24, 2016 22:05
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' );
}