Home › Forums › Pro Support › Filter for changing the pagination Previous / Next text? Tagged: pagination This topic has 1 reply, 2 voices, and was last updated 4 years, 5 months ago by Tom. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts April 17, 2019 at 1:20 am #8789 shprParticipant Hello, do you have a filter for changing the pagination text in wp show posts? Thanks April 17, 2019 at 10:20 pm #8807 TomKeymaster Hi there, There aren’t any filters, but you might be able to do this: add_filter( 'gettext', function( $translated_text, $text, $domain ) { if ( '← Previous' === $translated_text ) { $translated_text = 'Your custom text'; } if ( 'Next →' === $translated_text ) { $translated_text = 'Your other custom text'; } return $translated_text; }, 20, 3 ); Let me know 🙂 Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In