Originally Posted by Tropheus 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>';
Kuroi Web Design and Development | Twitter (Questions answered in the forum only - so that any forum member can benefit - not by personal message)
Forum Rules