functions.php
17 lines
| 1 | <?php |
| 2 | if ( ! defined( 'ABSPATH' ) ) |
| 3 | exit; |
| 4 | |
| 5 | |
| 6 | add_action('wp_enqueue_scripts', 'tutor_flatpro_scripts'); |
| 7 | |
| 8 | if ( ! function_exists('tutor_flatpro_scripts')){ |
| 9 | function tutor_flatpro_scripts(){ |
| 10 | $dir_url = plugin_dir_url(__FILE__); |
| 11 | wp_enqueue_style('tutor_flatpro', $dir_url.'assets/css/style.css'); |
| 12 | } |
| 13 | } |
| 14 | |
| 15 | |
| 16 | |
| 17 |