WordPress Plugin not working because it add some code css & scripts in Header & footer.
Wordpress Provides functions for it.
To work plugin properly need to call that function in header & footer.
Below is given code for it & place where to put it describes.
Just Follow it.
<?php wp_head(); ?>
Add this code Before </head> in header.php
____________________________________________
<?php wp_footer(); ?>
Add this code Before </body> in footer.php
Wordpress Provides functions for it.
To work plugin properly need to call that function in header & footer.
Below is given code for it & place where to put it describes.
Just Follow it.
<?php wp_head(); ?>
Add this code Before </head> in header.php
____________________________________________
<?php wp_footer(); ?>
Add this code Before </body> in footer.php
0 comments:
Post a Comment