Skip to content

Instantly share code, notes, and snippets.

@ethanclevenger91
Created September 19, 2014 16:37
Show Gist options
  • Save ethanclevenger91/eb1363f274bd725c91ef to your computer and use it in GitHub Desktop.
Save ethanclevenger91/eb1363f274bd725c91ef to your computer and use it in GitHub Desktop.
Never write two lines of php for an image again
function ws_get_attachment_image_url($id, $size) {
$img = wp_get_attachment_image_src($id, $size);
return $img[0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment