jkb-childtheme/functions.php

7 lines
191 B
PHP
Raw Permalink Normal View History

2020-09-29 16:47:09 +02:00
<?php
add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' );
function enqueue_parent_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
}
?>