Quote Originally Posted by Tropheus View Post
What's the best way to place a link to a new page into the sidebox I have tried:

$content .= '<?php echo '<a href="' . zen_href_link( PAGE_NAME, '' ) . '">Link Text</a>'; ?>';

It does not like it?
It doesn't like it because you have copied code that is intended to be inserted into a non-php area and therefore has php tags, into an area that doesn't need them.

You only need:

$content .= '<a href="' . zen_href_link( PAGE_NAME, '' ) . '">Link Text</a>';