/** * Load CSS and JS the right way * * @since 1.0 * @refer https://developer.wordpress.org/reference/functions/wp_enqueue_style/#comment-340 */ function firerooster_load_css_and_js() { // Load Boostrap CSS wp_enqueue_style( ‘bootstrap-css’, get_template_directory_uri() . ‘/includes/bootstrap4/css/bootstrap.min.css’ ); // Load style.css wp_enqueue_style( ‘style’, get_stylesheet_uri() ); // Load Boostrap…