<?php if ( is_single($post) ) <div class=""> { $categories = get_the_category();
if($categories[0]){
echo '<a href="' . get_category_link($categories[0]->term_id ) . '">'. $categories[0]->name . '</a>'; } }
</div> ?>
<?php if (is_single($post)){ echo '<div class="">';
$categories = get_the_category();
if($categories[0]){
echo '<a href="' . get_category_link($categories[0]->term_id ) . '">'. $categories[0]->name . '</a>';
} echo '</div>';} ?>