I am developing the plugin, and I would like to include bootstrap in my plugin. What is the best way to include? I couldn\'t find anything related to this, so far I have found s
You can use the 'wp_head' action to add code to the header of the site each time the page loads. Put something like this into your plugin:
add_action('wp_head','head_code'); function head_code() { $output = ''; $output .= ''; $output .= ''; echo $output; }