Simple feed for displaying social media content on webpage

I’m building a website for my company and I’m wanting to pull in feeds from our Instagram, Twitter, Facebook, etc… to display the X most recent posts on our website. But I don’t want a “widget” from someone else, I just need a simple feed that will let me manipulate the data to the style of my site.

For example, for Instagram I’d just like to show the 10 most recent images. I don’t even care about showing how many likes or comments or a description.

I can’t seem to find a straight-forward source for how to do this. Thanks!

Hi,

You can display the recent posts by simply pasting the following code in a template file of your choosing.

<?php wp_get_archives( array( ‘type’ => ‘postbypost’, ‘limit’ => 10, ‘format’ => ‘html’ ) ); ?>