num_display; $options = array( 'type' => 'object', 'subtype' => 'blog', 'container_guid' => $vars['entity']->owner_guid, 'limit' => $num, 'full_view' => FALSE, 'pagination' => FALSE, ); $content = elgg_list_entities($options); echo $content; if ($content) { $blog_url = "blog/owner/" . elgg_get_page_owner_entity()->username; $more_link = elgg_view('output/url', array( 'href' => $blog_url, 'text' => elgg_echo('blog:moreblogs'), 'is_trusted' => true, )); echo "$more_link"; } else { echo elgg_echo('blog:noblogs'); }