# tutor/1.4.0/includes/theme-compatibility/hestia/functions.php

Tutor LMS – eLearning and online course solution, version 1.4.0. 17 lines.

- Page: https://pluginprobe.com/plugins/tutor/1.4.0/code/includes/theme-compatibility/hestia/functions.php
- Raw: https://pluginprobe.com/plugins/tutor/1.4.0/raw/includes/theme-compatibility/hestia/functions.php
- Modified: 2019-09-10T12:21:50+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tutor/1.4.0/code/includes/theme-compatibility/hestia/functions.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) )
    exit;


add_action('wp_enqueue_scripts', 'tutor_hestia_scripts');

if ( ! function_exists('tutor_hestia_scripts')){
    function tutor_hestia_scripts(){
        $dir_url = plugin_dir_url(__FILE__);
        wp_enqueue_style('tutor_hestia', $dir_url.'assets/css/style.css');
    }
}




```
