论文:自定义404页
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了论文:自定义404页相关的知识,希望对你有一定的参考价值。
/*--------------------------------------------------*/ /* 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');
以上是关于论文:自定义404页的主要内容,如果未能解决你的问题,请参考以下文章