Revision: 41969
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at February 25, 2011 13:35 by mommygeekology
Initial Code
// Change the Previous Posts Link
function change_previous_posts() {
return 'Older Articles';}
add_filter('headway_older_posts_link', 'change_previous_posts');
// Change the Next Posts Link
function change_next_posts() {
return 'Newer Articles';}
add_filter('headway_newer_posts_link', 'change_next_posts');
// Change the Previous Post Link - Single Post Page
function change_previous_post() {
return 'One step back';}
add_filter('headway_previous_post_link', 'change_previous_post');
// Change the Next Post Link - Single Post Page
function change_next_post() {
return 'One step forward';}
add_filter('headway_next_post_link', 'change_next_post');
Initial URL
http://headwaytoolbox.com
Initial Description
Change the text in between the single quotes - i.e. return 'Older Articles' to reflect whatever you want the link for older / newer posts or next/previous post to say.
Initial Title
Change Previous / Next Posts
Initial Tags
Initial Language
PHP