At this moment I am working on a WordPress website. To get the title of the site I am using the next code:
<div class="site-title"><?php bloginfo( 'name' ); ?></div>
Now I want to put this code/ the result of it in a php table cell, so:
echo "<td align='center' width='50%'>SITENAME</td>";
How can I implement/ use that php bloginfo code at the place where currently SITENAME is written?