how to create an Carousel home page
-
// Enqueue Bootstrap CSS and JS in the theme
function enqueue_bootstrap() {
??? // Bootstrap CSS
??? wp_enqueue_style( ‘bootstrap-css’, ‘https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css’ );
??? // Bootstrap JS (with Popper.js for tooltips, dropdowns, etc.)
??? wp_enqueue_script( ‘bootstrap-js’, ‘https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.bundle.min.js’, array(‘jquery’), null, true );
}
add_action( ‘wp_enqueue_scripts’, ‘enqueue_bootstrap’ ); to get my carousel sliding home page i am this bootstrap code in function.php but it is affection the website how to resolveThe page I need help with: [log in to see the link]
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.