If you want to link stylesheets and scripts in wordpress,the correct way is to use wp_enqueue_style() and wp_enqueue_scripts() in your functions.php file
Try this in your functions.php file
wp_enqueue_style('bootstrap-css',get_template_directory_uri()."https://wordpress.stackexchange.com/bootstrap/css/bootstrap.min.css");
wp_enqueue_script('jquery',get_template_directory_uri().'/scripts/jquery.min.js');
wp_enqueue_script('bootstrap-js',get_template_directory_uri().'/bootstrap/js/bootstrap.min.js');
Related Posts:
- What is the problem if I use CDN in my WordPress parent theme(built using bootstrap)?
- Developing WordPress Theme using CSS framework like Bootstrap
- WP_bootstrap_Navwalker_issue [closed]
- Why I obtain different visualization when I run the website on my local machine and on remote server?
- Why the slideshow is not shown in my theme?
- Sizing screenshot.png without losing aspect ratio
- How to add CSS class to custom logo?
- theme path in javascript file
- Should `get_template_directory_uri()` be escaped?
- How To Add New Option Types To Option Tree?
- Page template in two level deep folder
- Theme Customizer : how to create multiple-level panel
- Excess White Space Above Admin Bar on Frontend Using Twitter Bootstrap
- Child Theme not loading parent CSS
- What can I hook into after_setup_theme?
- Where do I find the functions triggered within a hook?
- Use of undefined constant FS_CHMOD_DIR – assumed ‘FS_CHMOD_DIR’
- Registering Sidebars and Sidebar Widgets. Sidebar Widgets Not Displaying
- How do I get a parent theme modification from a child theme?
- Removing the default sidebar from admin panel
- how to pull wordpress post comments to a external page
- index.php is not loaded for single posts
- Why use while over if in single wordpress posts?
- WordPress website loads but is not displayed until page scrolled
- How to use bloginfo( ‘template_directory’ ) in array
- Theme Customizer not loading
- Is it a good idea to make whole theme widgetized?
- Single Theme folder for Multiple WordPress
- How i can get widgets areas working in customizer?
- Cutomize Colors utility: How to add more configurable colors to a theme
- Where is definied the theme location for the main menu in a WordPress template?
- How to disable automatic colors in the Twenty Twenty theme?
- I want to get the home root path
- Gutenberg – editor-font-sizes in functions not working
- How to add code in the content area in a WordPress theme?
- Cannot figure out how to overwrite files in child theme
- WordPress post arrangement using post_class
- Customize the previous_post_link output
- How to use get_template_part instead of include_once?
- How to remove comment link title attribute?
- wp-cli: For development, how can I activate a theme that is on the local disk but not zipped?
- My Admin bar covers my sticky navbar [closed]
- Using esc_url with a hard coded url
- Broken template went invisible
- Single Page Design, Storing in Theme Options
- Edit footer via customizer
- loading blank white screen of slide
- Child Theme’s style.css not loading in mobile browser
- Migrated WordPress site renders Chinese
- How to Find the Page the Front Page is Using?
- Renaming a theme so it aids SEO and the theme used is hidden
- How do I get the trackback count of a post in wordpress without writing an SQL query?
- Theme thumbnail in dashboard
- 3 Level Deep Navigation Menu Not Showing All Levels
- How to change the theme directory uri for localhost?
- How to Have a Pure HTML Sub Directory In WP Site
- Theming Using Bootstrap Glyphicons and WordPress Dashicons
- WordPress page/blog incorporated into static website
- Random white space before doctype
- How to add menù section to my WordPress template?
- What are the critical theme files when building a custom theme?
- Having issue with WordPress wp_enqueue_style
- Starting point for custom Themes [closed]
- Theme Development -> Specific Homepage
- Customizer: get_preview_url() inside customize_save_after hook
- Full width featured thumbnail
- Is there a way to switch to another theme?
- New to WordPress – Read the Codex, Other Docs; Still Confused
- Why in this WordPress theme I can’t see the Main Menu?
- When trying to set title, not sure how to edit it for different pages
- Post archives link yields a 404 Not Found
- Get video from the post on homepage
- static front page ONLY for certain themes?
- How to add cropped custom header image?
- Open portfolio image in light box
- WordPress Themes Directory: Template which hits the standards?
- How to change a local wordpress installation xml export file urls? and change them to what if you don’t have a live website?
- Any way to change/add to the theme name dynamically?
- Let user to upload multiple time
- How to make menus, footer, sidebars multi language
- Different WP Rest API custom endpoints across different themes
- How to generate a rtl.css file for themes?
- register_theme_directory() sees custom themes directory, but blank frontend
- Providing updates to your WordPress theme
- How to create multiple pages in a client theme?
- How do child themes work?
- Using Customizer value in an external PHP file inside a theme
- Import from HubSpot COS into WordPress 4?
- Theme customizer live preview JS- Trying to bind to an html image url without luck
- Theme automatically inserting “more” tag on every post
- How get the 10 most viewed pages (not post)
- Using wp_enqueue_script with social media buttons?
- Show post thumbnail only if it exists using timthumb
- Purchased Theme to Custom Made Theme? [closed]
- How to make website with many template that active [closed]
- Image Size wrong during upload
- How to create full header but keep content narrow
- Twenty sixteen – full height
- Correct way to make a custom block theme responsive
- What is the point of using the front-page.php template? [closed]