If I create a View called, for example, "Latest Additions" and I want to output the name of this View in the frontend of the website, how can I do that? I see no option for that from within Views GUI.
Currently, I'm rendering this View directly in a php template using <?php echo(render_view(array('title' => 'Latest Additions'))); ?>
What I want is to display the title "Latest Additions" in <h1> tag and then the content of the View below it. Any advice?