mirror of
https://github.com/KevinMidboe/rohnenedre.git
synced 2026-01-10 11:25:47 +00:00
Initial commit. State 04.2021.
This commit is contained in:
16
wp-content/themes/fonts/functions.php
Normal file
16
wp-content/themes/fonts/functions.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
//
|
||||
// Recommended way to include parent theme styles.
|
||||
// (Please see http://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme)
|
||||
//
|
||||
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
|
||||
function theme_enqueue_styles() {
|
||||
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
|
||||
wp_enqueue_style( 'child-style',
|
||||
get_stylesheet_directory_uri() . '/style.css',
|
||||
array('parent-style')
|
||||
);
|
||||
}
|
||||
//
|
||||
// Your code goes below
|
||||
//
|
||||
Reference in New Issue
Block a user