Is there a documentation on how to display photos from a certain album? I know there is a documentation on how to display site wide photos but how does one go to to display only photos from a certain album?
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by RaĆ¼l Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
- seth101@seth101
seth101 - 0 likes
- DhrupDeScoop@Dhrup2000
DhrupDeScoop - 0 likes
- seth101@seth101
seth101 - 0 likes
You must log in to post replies.comon tidypic! =) ^
$image_html = elgg_list_entities
(array
(
'type' => 'object',
'subtype' => 'image',
'owner_guid' => $album_guid,
'limit' => $num_images,
'full_view' => false,
'pagination' => false,
)
);
Thanks Dhrup,
Will take a look when I get a chance =)