I have to do a wp plugin, it calls a page with a shortcode:
function shortcode_flexSlide(){
include ('eleve.php');
}
add_shortcode('flexSlide', 'shortcode_flexSlide');
And now I must load css and js link to the page 'eleve.php'
I have already tried the following:
wp_enqueue_script( 'flexSlideStyle', plugins_url( '/css/style.css', __FILE__ ));
But it looks at wp root dir + /css/style.css