ID , 'category', '');
$count = count($termscat);
if ( $count > 1 ) {
echo '
' . __( 'in the categories ', 'affyb' );
echo the_category(' - ');
echo '';
}
else {
echo '
' . __( 'in the category ', 'affyb' );
echo the_category(' ');
echo '';
}
}
if ( has_tag() ) {
$termstag = wp_get_post_terms( $post->ID , 'post_tag', '');
$count = count($termstag);
if ( $count > 1 ) {
echo '
' . __( 'with tags ', 'affyb' );
the_tags('', ' - ', '');
echo '';
}
else {
echo '
' . __( 'with tags ', 'affyb' );
the_tags('', ' - ', '');
echo '';
}
}
if ( comments_open() ) :
echo '';
endif;
?>