File: /home/kashmira/public_html/razitahir.com/wp-content/themes/upress/template-parts/post-meta_lg.php
<?php $translation = upress_translation(); ?>
<div class="post-info pt-5 pb-5">
	<?php 
		if ( get_theme_mod('postzoom_setting', 'on') == 'on' ) {
	?>
	<span class="pull-left">
		<a href="javascript:" id="incSize" title="Increase Font Size" class="mr-10"><i class="icon-zoom-in"></i></a>
		<a href="javascript:" id="dcrSize" title="Increase Font Size"><i class="icon-zoom-out"></i></a>
	</span>
	<?php } ?>
	<?php 
		if ( get_theme_mod('postcategory_setting', 'on') == 'on' ) {
	?>
	<span class="post-category ml-10">
		<i class="icon-folder-open-empty"></i>
		<?php the_category(', ') ?>
	</span>
	<?php } ?>
	<?php 
		if ( get_theme_mod('postauthoronoff_setting', 'on') == 'on' ) {
	?>
	<span class="post-author ml-10">
		<i class="icon-user-circle-o pl-5"></i>
		<?php printf( '<a href="%1$s">%2$s</a>',
			esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
			esc_html( get_the_author() )
		); ?>
	</span>
	<?php } ?>
	<?php 
		if ( get_theme_mod('postdateonoff_setting', 'on') == 'on' ) {
	?>
	<?php urdupress_posted_on() ?>
	<?php } ?>
	<?php 
		if (get_theme_mod('postcommentonoff_setting', 'on') == 'on' ) {
			$comments_count = wp_count_comments(get_the_ID());
			$comment_string = ($comments_count->approved == 1) ? $translation['meta']['comment'] : $translation['meta']['comments']; 
	?>
	
	<span class="post-comments mr-10">
		<i class="icon-comment pl-5"></i> <?php echo $comments_count->approved ?> <?php _e($comment_string) ?>
	</span>
	<?php } ?>
	<?php 
		if ( get_theme_mod('postviewsonoff_setting') && get_theme_mod('postviewsonoff_setting') == 'on' ) {
	?>
	<span class="post-views mr-10"><?php upress_views() ?></span>
	<?php } ?>
</div>