Skip to content

Instantly share code, notes, and snippets.

@2ndkauboy
Created December 15, 2015 22:36
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 2ndkauboy/fe32034956a4116c9afc to your computer and use it in GitHub Desktop.
Save 2ndkauboy/fe32034956a4116c9afc to your computer and use it in GitHub Desktop.
Ein einfaches Child-Theme, das die CSS-Dateien über den optimalen Weg einbindet.
<?php
function twentyfifteen_parent_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'google-font-cherry-swash', 'https://fonts.googleapis.com/css?family=Cherry+Swash:700' );
}
add_action( 'wp_enqueue_scripts', 'twentyfifteen_parent_enqueue_styles' );
/**
Theme Name: Adventskalender Advanced
Template: twentyFifteen
*/
.site-title {
font-family: 'Cherry Swash', cursive;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment