Advertisement
fahimmurshed

Astra change "Previous" and "Next" text string in the Blog

Apr 13th, 2020
409
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1. /**
  2.  * Next and Previous String
  3.  *
  4.  * @param array $strings     List of default strings used in theme
  5.  * @return array $strings
  6.  */
  7. function post_default_strings_callback( $strings ) {
  8.    
  9.     // Next Post
  10.     $strings['string-single-navigation-next']   = __('Go to the Next Post', 'astra') . ' →';
  11.    
  12.     // Previous Post
  13.     $strings['string-single-navigation-previous']   = '← ' . __('Go to Previous Post', 'astra');
  14.  
  15.     return $strings;
  16. }
  17. add_filter( 'astra_default_strings', 'post_default_strings_callback', 10 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement