I am trying to link bootstrap into advisor theme in Wordpress. Wordpress 4.9.6 Bootstrap 4.1.1
In my child theme folder wp-content/themes/restaurant-advisor-child/
Is a functions.php file, in which is this script:
<?php
add_action('wp_enqueue_scripts', 'your_child_theme_enqueue_styles');
function your_child_theme_enqueue_styles()
{
$parent_style = 'restaurant-advisor';
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));
wp_enqueue_style('bootstrap', get_stylesheet_directory() . '/bootstrap/css/bootstrap.min.css');
wp_enqueue_script('bootstrap', get_stylesheet_directory() . '/bootstrap/js/bootstrap.min.js');
}
As you can see, I link the bootstrap in last two lines. This code generates me this link:
And:
These links, give me 404. The folder is in wp-content/themes/restaurant-advisor-child/bootstrap/
How should I change my links, to get into the folder with files? Thank you for help.