[Support request] Change strings about [←Previous & Next→]

Home Forums Support [Support request] Change strings about [←Previous & Next→]

Home Forums Support Change strings about [←Previous & Next→]

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1379069
    teayoon

    I want to change these ‘←Previous’ to ‘<<‘ and ‘Next→’ to ‘>>’

    how can i do?

    https://imgur.com/a/IhtD3xy <- Please refer to the screenshot.

    thanks

    #1379465
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    Try this:

    add_filter( 'generate_previous_link_text', function() {
        return '<<';
    } );
    
    add_filter( 'generate_next_link_text', function() {
        return '>>';
    } );
    #1379468
    teayoon

    Freaking thanks!!! I love this theme and these team!!!

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.