Surprisingly there is no option in the admin interface to change the title of the blog page which is generated by the blog module. Though you can change the title by changing the menu link. But sometimes you probably want to keep the menu link, but change the blog title or you want to have different titles in the menu and on the page. If so you can change the title by editing the blog module. This is not a very proper solution, but it is apparently the most efficient. Don't forget to log this change, because with an update of the blog module you will loose this change.
To change the title you open the file blog.module in the folder Modules>Blog. The you search for the following section.
function blog_menu() {
$items['blog'] = array(
'title' => 'Blogs',
'page callback' => 'blog_page_last',
'access arguments' => array('access content'),
'type' => MENU_SUGGESTED_ITEM,
'file' => 'blog.pages.inc',
To change the title you just edit 'title' => 'Blogs'. If you want the title to be Drupal you change it to 'title' => 'Drupal'.
- Log in to post comments