Skip to content

Instantly share code, notes, and snippets.

@MjHead
Created March 7, 2016 12:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MjHead/986e2c475dad18f88dc8 to your computer and use it in GitHub Desktop.
Save MjHead/986e2c475dad18f88dc8 to your computer and use it in GitHub Desktop.
<?php
public function get_image( $photo ) {
$width = 100;
$height = 100;
$photo['image'] = str_replace( 's150x150', 's100x100', $photo['image'] );
return sprintf( '<a class="instagram__link" href="%s" target="_blank" rel="nofollow"><img class="instagram__img" src="%s" alt="" width="%s" height="%s"><span class="instagram__cover"></span></a>', esc_url( $photo['link'] ), esc_url( $photo['image'] ), $width, $height );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment