File: //proc/thread-self/cwd/wp-content/plugins/tutor/includes/theme-compatibility/oceanwp/functions.php
<?php
/**
* OceanWP theme compatibility.
*
* @package Tutor\ThemeCompatibility\OceanWP
* @author Themeum <support@themeum.com>
* @link https://themeum.com
* @since 1.0.0
*/
defined( 'ABSPATH' ) || exit;
add_action( 'wp_enqueue_scripts', 'tutor_oceanwp_scripts' );
if ( ! function_exists( 'tutor_oceanwp_scripts' ) ) {
/**
* Enqueue OceanWP theme compatibility scripts.
*
* @since 1.0.0
*/
function tutor_oceanwp_scripts() {
$dir_url = plugin_dir_url( __FILE__ );
wp_enqueue_style( 'tutor_oceanwp', $dir_url . 'assets/css/style.css', array(), tutor()->version );
}
}