sorry if my question is so silly!
i have a php code:
<div class="breadcrumbs">
<?php if(function_exists('bcn_display') && !is_archive())
{
bcn_display();
}?>
</div><br />
and i want put div inside php if order:
<?php if(function_exists('bcn_display') && !is_archive())
{
<div class="breadcrumbs">
bcn_display();
</div><br />
}?>
but the way i'm doing it is not right, i hope someone can help me.
thanks in advance.
echo '<div class="breadcrumbs">'