How to place a wordpres plugin (Custom Facebook Feed) inside a div?
Posted on: 23 May 2015 /
Categories:
The following article describes how to add a shorthand wordpress plugin inside a div
You can use do_shortcode function:
# <!-- PLUGINS -->
# <div class='col-sm-4 section'>
# <h1>Social</h1>
# <?php echo do_shortcode('[custom-facebook-feed]');?>
# </div>