Guest User

Untitled

a guest
Feb 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. // Standard example which works with your photostream but not a group
  2. $('ul').jflickrfeed({
  3. limit: 2,
  4. qstrings: {
  5. id: '44802888@N04'
  6. },
  7. itemTemplate: '<li><img alt="{{title}}" src="{{image_s}}" /></li>'
  8. });
  9.  
  10. // Make this addition and make sure you are using the groups ID and it will work
  11. $('ul').jflickrfeed({
  12. limit: 2,
  13. qstrings: {
  14. id: '1727866@N21'
  15. },
  16. feedapi: 'groups_pool.gne',
  17. itemTemplate: '<li><img alt="{{title}}" src="{{image_s}}" /></li>'
  18. });
Add Comment
Please, Sign In to add comment