/ Published in: PHP
                    
                                        
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.
                return 'Older Articles'
to reflect whatever you want the link for older / newer posts or next/previous post to say.
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
// 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');
URL: http://headwaytoolbox.com
Comments
 Subscribe to comments
                    Subscribe to comments
                
                