This repository has been archived on 2025-03-20. You can view files and clone it, but cannot push or open issues or pull requests.
jkb-kv-hro/functions.php
2020-09-29 16:47:09 +02:00

6 lines
191 B
PHP

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