14
0
Fork 0
This repository has been archived on 2024-01-12. You can view files and clone it, but cannot push or open issues or pull requests.
Urwahl3000-Childthemes/functions.php

13 lines
196 B
PHP

<?php
/*Load Stylesheet */
function kr8_childtheme() {
wp_enqueue_style( 'kr8-childtheme-css', get_stylesheet_uri() );
}
add_action( 'wp_enqueue_scripts', 'kr8_childtheme',1000 );
?>