Answers
Best Answer
Best Answer
Yes it is possible. However, only if the $condition is true. In example:
<?php if($condition) : ?>
<a href="http://designreviver[dot]com">This can only be displayed if $condition is succesful</a>
<?php endif; ?>
<?php if($condition) : ?>
<a href="http://designreviver[dot]com">This can only be displayed if $condition is succesful</a>
<?php endif; ?>

