Thesis: change previous next text


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. /*--------------------------------------------------*/
  2. /* previous, next */
  3. /*--------------------------------------------------*/
  4.  
  5. function next_text(){
  6. $next = 'Neuere Artikel →';
  7. return $next;
  8. }
  9. add_filter('thesis_next','next_text');
  10.  
  11. function previous_text(){
  12. $previous = '← Ältere Artikel';
  13. return $previous;
  14. }
  15. add_filter('thesis_previous','previous_text');
  16.  
  17. function next_post_text(){
  18. $next_text = 'Nächster Artikel: ';
  19. return $next_text;
  20. }
  21. add_filter('thesis_next_post','next_post_text');
  22.  
  23. function previous_post_text(){
  24. $previous_text = 'Vorheriger Artikel: ';
  25. return $previous_text;
  26. }
  27. add_filter('thesis_previous_post','previous_post_text');

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.