Skip to content

Instantly share code, notes, and snippets.

Created August 24, 2016 14:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/dfeeb6a5fb93db0a809f904152e8a83b to your computer and use it in GitHub Desktop.
Save anonymous/dfeeb6a5fb93db0a809f904152e8a83b to your computer and use it in GitHub Desktop.
<?php
/* =============================================================================
Die functions.php fuer Dein Child-Theme
============================================================================= */
/**
* Diese Funktion ist zwingend notwendig. Sie installiert das CSS des Eltern-Themes
* Das CSS Deines Child-Themes wird ohne Dein Zutun automatisch installiert.
*/
add_action( 'wp_enqueue_scripts', 'tb_theme_enqueue_styles' );
function tb_theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
}
/* =============================================================================
Ab hier unterhalb kannst Du Deine Aenderungen einfügen
=============================================================================== */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment