...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
add_action( 'wp_enqueue_scripts', function () { // Enqueue the CSS files. wp_enqueue_style( 'theme-styles', get_stylesheet_directory_uri() . '/style.css', array( 'hsph-bootstrap' ), HSPH_HOME_THEME_VERSION ); // Optionnaly: Enqueue JS if you want to use tabs, dropdowns, modals, tooltips, ... wp_enqueue_script( 'theme-scripts', get_stylesheet_directory_uri() . '/js/homepagemain.js', array( 'jquery', 'jqueryhsph-ui-tabsbootstrap', 'jquery-flexslider' ), HSPH_HOME_THEME_VERSION, true ); } ); |