Return to Snippet

Revision: 45352
at April 28, 2011 20:00 by psteinweber


Initial Code
/*--------------------------------------------------*/
/* 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');

Initial URL


Initial Description


Initial Title
Thesis: change previous next text

Initial Tags
wordpress, text, button

Initial Language
PHP