/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/*--------------------------------------------------*/ /* Custom 404 Page */ /*--------------------------------------------------*/ function custom_thesis_404_title() { ?> Seite nicht gefunden <? } remove_action('thesis_hook_404_title', 'thesis_404_title'); add_action('thesis_hook_404_title', 'custom_thesis_404_title'); function custom_thesis_404_content() { ?> <p> </p> <p>Text</p> <? } remove_action('thesis_hook_404_content', 'thesis_404_content'); add_action('thesis_hook_404_content', 'custom_thesis_404_content'); remove_action('thesis_hook_custom_template','thesis_custom_template_sample');