论文:改上一篇下一篇
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了论文:改上一篇下一篇相关的知识,希望对你有一定的参考价值。
/*--------------------------------------------------*/ /* previous, next */ /*--------------------------------------------------*/ function next_text(){ $next = 'Neuere Artikel →'; return $next; } add_filter('thesis_next','next_text'); function previous_text(){ $previous = '← Ältere Artikel'; return $previous; } add_filter('thesis_previous','previous_text'); function next_post_text(){ $next_text = 'Nächster Artikel: '; return $next_text; } add_filter('thesis_next_post','next_post_text'); function previous_post_text(){ $previous_text = 'Vorheriger Artikel: '; return $previous_text; } add_filter('thesis_previous_post','previous_post_text');
以上是关于论文:改上一篇下一篇的主要内容,如果未能解决你的问题,请参考以下文章