' . get_the_author() . ''
);
$display_date = $bavotasan_theme_options['display_date'];
if( $display_date ) {
if( $display_author )
echo ' ' . __( 'on', 'matheson' ) . ' ';
echo '
';
}
$display_categories = $bavotasan_theme_options['display_categories'];
if( $display_categories ) {
if( $display_author || $display_date )
echo ' ' . __( 'in', 'matheson' ) . ' ';
the_category( ', ' );
}
$display_comments = $bavotasan_theme_options['display_comment_count'];
if( $display_comments && comments_open() ) {
if ( $display_author || $display_date )
echo ' • ';
comments_popup_link( __( '0 Comments', 'matheson' ), __( '1 Comment', 'matheson' ), __( '% Comments', 'matheson' ) );
}
?>