<?php
/**
 * Child-Theme functions and definitions
 */

function tediss_child_scripts() {
    wp_enqueue_style( 'tediss-parent-style', get_template_directory_uri(). '/style.css' );
}

add_filter('wp_enqueue_scripts', 'tediss_child_scripts');
?>
