Description
Within h1 (within div.headline_area); used to change the page title of 404 error pages (not the <title> which appears in the browser’s title bar).
Source Position
<div class="headline_area"> thesis_hook_404_title </div>
Default Functions
The following functions are added to this hook by default:
thesis_404_title
Example
function custom_404_title() {
?>
<h1>Sorry, that page does not exist.</h1>
<?php
}
add_action('thesis_hook_404_title','custom_404_title');
remove_action('thesis_hook_404_title', 'thesis_404_title');