Skip to content

Instantly share code, notes, and snippets.

@wpmark
Last active August 29, 2015 14:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wpmark/fe5bad0da69d4f0b895c to your computer and use it in GitHub Desktop.
Save wpmark/fe5bad0da69d4f0b895c to your computer and use it in GitHub Desktop.
Null Instagram Widget Output in Template File
<?php
/* output instagram widget */
the_widget(
'null_instagram_widget',
array(
'username' => 'username',
'title' => '',
'number' => '1',
'size' => 'large',
'target' => '_blank',
'link' => 'Follow Us on Instagram'
),
array(
'before_title' => '',
'after_title' => '',
'before_widget' => '<div class="instagram-widget">',
'after_widget' => '</div>'
)
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment