third commit

This commit is contained in:
Willi Junga 2020-09-29 16:47:09 +02:00
parent a437413256
commit 1ca03fd14b
Signed by untrusted user: JunWi
GPG key ID: 16CD94732DE08DA5
2 changed files with 20 additions and 0 deletions

6
functions.php Normal file
View file

@ -0,0 +1,6 @@
<?php
add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' );
function enqueue_parent_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
}
?>