where in ‘flickr Gallery’s’ code would i ….
<script type="text/javascript">
$().ready(function() {
// JSON feed from Flickr
var feedUrl = "https://api.flickr.com/services/feeds/photos_public.gne?format=json&jsoncallback=?"
// parse JSON using jQuery's built-in function
$.getJSON(feedUrl, function(data) {
// iterate through each item
$.each(data.items, function(i, item) {
// create image node in DOM and update it's src attribute
// _m = medium img, _b = large; remove the replace function if you want the standard small images
$("<img/>").attr("src", item.media.m.replace("_m", "_b"))
// add image to gallery container
.appendTo("#gallery")
// add a link to each image - this will go to the photo on Flickr
.wrap('<a href="' + item.link + '" target="_blank"></a>');
});
});
</script>
from:https://www.jamestease.co.uk/blether/display-flickr-photos-in-the-galleria-jquery-plugin/