Hello!
I'm very new with php, I just have to update some functions in a wordpress site.
Having this:
$message .= sprintf(__('Your username is %s'), $user_login);
I would like to have the user login variable in bold.
Have tried many things, as
$user_login = '<strong>' . $user_login . '</strong>';
Or embedding the HTML tags inside sprintf function, however everything I tried always print the tags itself.
How this could be done?