Initial commit

This commit is contained in:
Jeremy Dormitzer 2018-03-14 10:47:33 -04:00
commit 8153a3b70d
No known key found for this signature in database
GPG Key ID: 04F17C0F5A32C320
2 changed files with 22 additions and 0 deletions

14
functions.php Normal file
View File

@ -0,0 +1,14 @@
<?php
function simplent_child_enqueue_styles() {
$parent_style = 'simplent-style'; // This is 'twentyfifteen-style' for the Twenty Fifteen theme.
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'simplent-child-style',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style ),
wp_get_theme()->get('Version')
);
}
add_action( 'wp_enqueue_scripts', 'simplent_child_enqueue_styles' );
?>

8
style.css Normal file
View File

@ -0,0 +1,8 @@
/*
Theme Name: Jeremy's Simplent Child
Description: Jeremy's Simplent Child Theme
Author: Jeremy Dormitzer
Template: simplent
Version: 1.0.0
Text Domain: simplent-child
*/