Description
Within div.format_text; determines the content of the 404 error page.
Source Position
<div class="format_text"> thesis_hook_404_content </div>
Default Functions
There are no default functions added to this hook.
The following functions are added to this hook by default:
thesis_404_content
Example
function custom_404_content() {
?>
<p>Custom content here.</p>
<?php
}
add_action('thesis_hook_404_content','custom_404_content');
remove_action('thesis_hook_404_content', 'thesis_404_content');