Guest User

Untitled

a guest
Jul 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. /* Custom 404 Hooks */
  2. function custom_thesis_404_title() {
  3. ?>
  4. YOUR 404 PAGE HEADING HERE
  5. <?
  6. }
  7. remove_action('thesis_hook_404_title', 'thesis_404_title');
  8. add_action('thesis_hook_404_title', 'custom_thesis_404_title');
  9. function custom_thesis_404_content() {
  10. ?>
  11. <style type="text/css">
  12. <!-- #sidebars { display:none; } -->
  13. </style>
  14. <p>WHATEVER YOU WANT YOUR 404 PAGE TO SAY HERE</p>
  15. <?
  16. }
  17. remove_action('thesis_hook_404_content', 'thesis_404_content');
  18. add_action('thesis_hook_404_content', 'custom_thesis_404_content');
Add Comment
Please, Sign In to add comment