• Skip to primary navigation
  • Skip to main content

Genesis Community

Resources for Genesis WordPress Theme Users

  • Facebook
  • Twitter
  • Slack
  • Wiki
  • Login
You are here: Home / Wikis / Genesis / Customize Previous Page and Next Page text in Content Archives Post Navigation

Customize Previous Page and Next Page text in Content Archives Post Navigation

// Customizes the previous page link.
add_filter ( 'genesis_prev_link_text' , 'sp_previous_page_link' );
function sp_previous_page_link ( $text ) {
    return g_ent( '« ' ) . __( 'Previous Page', CHILD_DOMAIN );
}

// Customizes the next page link.
add_filter ( 'genesis_next_link_text' , 'sp_next_page_link' );
function sp_next_page_link ( $text ) {
    return __( 'Next Page', CHILD_DOMAIN ) . g_ent( ' » ' );
}

Posted by: Sridhar Katakam Category: Genesis Tags: archives, previous next

« Reposition footer widgets
Modify read more link when using the Content Limit »

Copyright © 2026 · Genesis Sample on Genesis Framework · WordPress · Log in