• Resolved qskk

    (@qskk)


    Hello, is it possible to translate the button Read more please?
    I try several functions, it is not as pretty as the basic button read more.

    Can someone help me please?
    I would like this to be “Voir plus” and not “Read more”.

    Thanks for your help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello qskk,

    Add below code into your current active child theme’s functions.php file or you can create custom plugin for it.

    function new_excerpt_more($more) {
      global $post;
      return '&hellip;<p class="more-link"><a href="' . esc_url( get_permalink($post->ID) ) . '" class="themebutton2">' . esc_html__( 'Voir plus', 'consulting') . '</a></p>';
    }
    add_filter('excerpt_more', 'new_excerpt_more');

    Hope this will helps you.

    Thanks !

    Thread Starter qskk

    (@qskk)

    Perfect, thanks you verry much !

    • This reply was modified 6 years, 11 months ago by qskk.

    Hello,
    Can i change a READ MORE button in content area? I want to translate.
    thanks for reply

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Read More button…’ is closed to new replies.