I’m new to WORDPRESS is it possible to use or import bootstrap in my custom plugin?
If not is there any kind of like bootstrap that I can use in designing my plugin?
I’m new to WORDPRESS is it possible to use or import bootstrap in my custom plugin?
If not is there any kind of like bootstrap that I can use in designing my plugin?
2
Answers
You need to modify the file header.php of the theme that you are using, in the editor this file may be described as "Theme Header". You need to link it to bootstrap:
This is the link they currently provide, though you can copy this directly from their webpage: https://getbootstrap.com/docs/4.5/getting-started/introduction
Notice that you are making changes to your theme file, so if the theme is updated your added code might be removed. To solve this you should use a child theme, which allows you to make changes that aren’t overridden by theme updates.
If you want to add bootstrap using the built-in editor I recommend you use one tutorial by steps, like this one: https://www.inmotionhosting.com/support/edu/wordpress/how-to-use-bootstrap-in-wordpress/
Once bootstrap is installed you should be able to use it as usual.