Hi,
I Have this function running:
function new_nolink(){
$kriesi_at_backlink = “atendimento“;
return $kriesi_at_backlink;
How can I translate the word “atendimento” and the link to my secondary website language?
Thanks!
Hey Nerohm,
Please change this line
$kriesi_at_backlink = "atendimento";
to
$kriesi_at_backlink = __( 'atendimento', 'avia_framework' );
Best regards,
Victoria