Style.css and Bootstrap CDN not loading in Function.php
-
<?php function load_css(){ wp_enqueue_style('load_css', get_theme_file_uri('/style.css')); wp_enqueue_style('bootstrap-cdn-css', 'https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css'); wp_enqueue_script('bootstrap-cdn-js', 'https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js', 'jquery', false, true); // wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); // wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array('parent-style') ); } add_action('wp_enqueue_scripts', 'load_css'); ?>
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Style.css and Bootstrap CDN not loading in Function.php’ is closed to new replies.