Blank Wordpress Child Theme
This file contains 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 | |
/** | |
* Theme Coder Child functions and definitions | |
* | |
* @package Theme Coder | |
* | |
*/ | |
/** | |
* Enqueue scripts and styles. | |
*/ | |
function theme_coder_child_scripts() { | |
// Enqueue Parent Stylesheet | |
wp_enqueue_style( 'theme-coder-parent-stylesheet', get_template_directory_uri() . '/style.css' ); | |
} // theme_coder_child_scripts | |
add_action( 'wp_enqueue_scripts', 'theme_coder_child_scripts' ); | |
/* You can add your own php functions and code snippets below */ |
This file contains 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: Theme Coder | |
Theme URI: https://themecoder.de | |
Description: Ein einfaches Child Theme für TwentySixteen | |
Version: 1.0 | |
Author: Thomas W | |
Author URI: https://netzberufler.de | |
Template: twentysixteen | |
License: GNU General Public License v2.0 | |
License URI: http://www.gnu.org/licenses/gpl-2.0.html | |
======================================*/ | |
/* You can start adding your own styles here. Use !important to overwrite styles if needed. */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment