I have asigned variable like:
$name = "sometext";
And i stuck with this code line:
$output .= '<a href="'. home_url() .'"><img src="'. $t_custom_logo .'" border="0" class="png" alt="'. get_bloginfo('name') .'" /></a>';
How can i echo or some how to make it apear $name value after
$output .= '<a href="'. home_url() .
So the main thing in result could look like this:
<a href="www.somelink.com/sometext"> ....
Thanks!
Do what you’ve been doing the whole time, concatenation: