jkb-childtheme/functions.php
2020-12-23 12:50:27 +01:00

12 lines
414 B
PHP

<?php
// The parent-theme adds the style with a priority of 999. In order
// for us to be able to override styles from the parent-theme we have to
// render our styles even later
add_action( 'wp_enqueue_scripts', 'enqueue_isabell-hiekel_css', 1000);
function enqueue_isabell-hiekel_css() {
wp_enqueue_style( 'parent-style', get_stylesheet_directory_uri() . '/lib/css/style_isabell-hiekel.css');
}
?>