After a lot of trial and error i finally got this code to work in a Wordpress footer:
Is there any way to write this in one echo statement or shorten it down? It works as it is but I just wonder if it is possible to make it smaller?
Code:
{
echo "© ".date("Y");
echo " ";
echo '<a href="';
echo bloginfo('url');
echo '">';
echo bloginfo('name');
echo '</a>';
}