forked from NB-Public/jkb-childtheme
Childtheme for KV Rostock, based on Joseph Knows Best (https://github.com/kre8tiv/Joseph-knows-best)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
292 B
7 lines
292 B
<?php |
|
|
|
function child_theme_styles() { |
|
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); |
|
wp_enqueue_style( 'child-theme-css', get_stylesheet_directory_uri() .'/style.css' , array('parent-style')); |
|
} |
|
add_action( 'wp_enqueue_scripts', 'child_theme_styles' );
|
|
|