I'm using the below to check if I am on a certain category before displaying an author bio. How can I also check to make sure that the bio is not empty. I want to skip the whole thing if the author hasn't filled out his bio.
<!-- Show author bio
<?php
if (in_category(8)|in_category(9)|in_category(10)|in_category(11)|in_category(12)|in_category(14)|in_category(18))
{
echo '<br /><h6><em>About the author</em></h6>';
echo '<em style="font-size:85%;">';
echo the_author_description();
echo '</em>';
}
?> -->
<br /><br />