PluginProbe
Tutor LMS – eLearning and online course solution / 1.9.11
Tutor LMS – eLearning and online course solution v1.9.11
4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 4.0.2 4.0.1 4.0.0 3.9.15 3.9.14 3.9.13 3.9.12 3.9.11 trunk 1.0.0 1.0.0-alpha 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 All 191 releases
tutor / includes / theme-compatibility / hestia / functions.php
functions.php
17 lines 324 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) )
3 exit;
4
5
6 add_action('wp_enqueue_scripts', 'tutor_hestia_scripts');
7
8 if ( ! function_exists('tutor_hestia_scripts')){
9 function tutor_hestia_scripts(){
10 $dir_url = plugin_dir_url(__FILE__);
11 wp_enqueue_style('tutor_hestia', $dir_url.'assets/css/style.css');
12 }
13 }
14
15
16
17