Skip to content

Instantly share code, notes, and snippets.

View melindahelt's full-sized avatar

Melinda Helt melindahelt

View GitHub Profile
@melindahelt
melindahelt / footer.php
Created November 1, 2016 18:40
My Child Theme Demo Footer
@melindahelt
melindahelt / style.css
Last active November 1, 2016 18:27
My Child Theme Demo (Twenty Sixteen)
/* Theme Name: [Your Theme Name]
Description: The custom theme [Your Theme Name] using the parent theme Twenty Sixteen.
Author: [You]
Author URI: [Your URL]
Template: twentysixteen
Version: 1
*/
@melindahelt
melindahelt / functions.php
Last active November 1, 2016 18:28
My Child Theme Demo (Twenty Sixteen)
<?php
add_action( 'wp_enqueue_scripts', 'mychildtheme_enqueue_styles' );
function mychildtheme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
}