Wordpress, why the plugins I install goes without css and without javascript?

0

Hello. I'm trying to put a photo gallery in a wordpress template that I did, however by the time I put the plugin it inserts the HTML into Pages > Add Page

And then I added the plugin code

[gallery_bank type="images" format="masonry" title="true" desc="false" responsive="true" display="selected" no_of_images="10" sort_by="random" animation_effect="" album_title="true" album_id="1"]

But it only shows HTML, both css and javascript does not work ....

Do you have to do anything in the template to support plugins?

Additional information just ask, I did not go into many details because I believe the problem is the lack of some code to support plugins.

But any hints help you figure out the problem.

    
asked by anonymous 13.01.2016 / 15:50

1 answer

2

Because you are speaking wp_head() in header.php and wp_footer() in footer.php of your theme.

These functions are essential for the correct operation of the theme.

In the WordPress codex documentation has comments on this at Theme Developement .

    
13.01.2016 / 21:13