megwoo
11/16/2016 - 6:39 PM

translate string/text using functions

translate string/text using functions

// translation
add_filter( 'gettext', 'replace_preview_resume_text' );
function replace_preview_resume_text( $text ){

    if( $text === 'Find out more' ) {
        $text = 'Learn More';
    }

    return $text;
}