Last active
September 4, 2019 07:18
-
-
Save philgyford/97ebdf473f79a5d8546d942f2ca5e776 to your computer and use it in GitHub Desktop.
Sparkling WordPress theme, child
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' ); | |
function my_theme_enqueue_styles() { | |
$parent_style = 'sparkling-style'; // This is 'sparkling-style' for the sparkling 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') | |
); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Theme Name: sparkling Child | |
Theme URI: https://colorlib.com/wp/themes/sparkling/ | |
Description: sparkling Child Theme | |
Author: John Doe | |
Author URI: http://example.com | |
Template: sparkling | |
Version: 1.0.0 | |
License: GNU General Public License v2 or later | |
License URI: http://www.gnu.org/licenses/gpl-2.0.html | |
Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready | |
Text Domain: sparklingchild | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment