I have created a plugin for a booking process but I'm not able to add the style or js files I have been using with it.
CSS file is found at "css/style.css" and JS file is found at "js/script.js".
My plugin php file which is working, is:
<?php
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
function sc_booking_process() {
return 'html code...';
}
add_shortcode('cinema-booking', 'sc_booking_process');
?>
It just isn't working with the style and js files.
Thanks.