please help my.
I need to make a conclusion of blog entries in a separate block
Example:
As speciation in the example - it prints only the title and description.
But after:
<?php echo elgg_list_entities(array(
'type' => 'object',
'subtype' => 'blog',
'limit' => (int) max(get_input('limit', 3), 0),
'full_view' => FALSE,
'pagination' => FALSE,
));?>
I have shown thus:

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.
- Team Webgalli@webgalli

Team Webgalli - 0 likes
- $blogs = elgg_get_entities($options)
- foreach($blogs as $blog){
- Alexsej@pekar666

Alexsej - 0 likes
You must log in to post replies.Use
echo $blog->title;
echo $blog->description;
}
This is just the code tip. You need to modify it as per your needs.
Team Webgalli - Many thanks from Russia