Changing page titles in your theme. There is also hook_page_title_alter hook. If for some reason you still want to do it your theme, then this is how.
Source code viewer
function THEME_preprocess_page(&$vars, $hook) { $vars['title'] = 'My page title!'; $vars['head_title'] = 'My page title!'; }Programming Language: PHP