Edit File: post-meta.php
<?php /** * Post meta */ defined( 'ABSPATH' ) || exit; // Exit directly $options = get_option( 'orun_opt' ); // Options $metabox_options = get_post_meta( get_the_ID(), 'orun_post_opt', true ); // Metabox Options ?> <style> @media(max-width:768px){ .orun-meta-left a { font-size:12px; } .posted-on{ font-size:10px; } .orun-meta-right span{ font-size:10px; } } </style> <div class="orun-single-meta"> <div class="orun-meta-left"> <a class="orun-single-author-img" rel="nofollow" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" title="<?php echo get_the_author_meta('display_name')?>"> <img src="<?php echo esc_url(get_avatar_url( get_the_author_meta('ID') )); ?>" alt="<?php echo get_the_author_meta('display_name'); ?>" width="24" height="24"> </a> <a rel="nofollow" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" title="<?php echo get_the_author_meta('display_name')?>" class="single-author"><?php echo get_the_author_meta('display_name')?></a> <em>-</em> <div class="date"> <?php orun_posted_on(); ?> </div> <?php if ( empty($metabox_options['orun-meta-opt-metabox-reading-time']) ) { if ($options['orun-opt-single-reading'] == true ) { ?> <br> <span class="reading-time"> <em>-</em> <?php echo do_shortcode('[readingTime]'); ?></span> <?php } else { echo ''; } } elseif ($metabox_options['orun-meta-opt-metabox-reading-time'] == 'show') { ?> <span class="reading-time"> <em>-</em> <?php echo do_shortcode('[readingTime]'); ?></span> <?php } elseif ($metabox_options['orun-meta-opt-metabox-reading-time'] == 'hide') { echo ''; } ?> </div> <div class="orun-meta-right"> <?php if ( empty($metabox_options['orun-meta-opt-metabox-views']) ) { if ($options['orun-opt-single-views'] == true ) { get_template_part('template-parts/single/post', 'views'); } else { echo ''; } } elseif ($metabox_options['orun-meta-opt-metabox-views'] == 'show') { get_template_part('template-parts/single/post', 'views'); } elseif ($metabox_options['orun-meta-opt-metabox-views'] == 'hide') { echo ''; } if ( empty($metabox_options['orun-meta-opt-metabox-comment-count']) ) { if ($options['orun-opt-single-comment'] == true ) { ?> <span><i class="far fa-comment"></i> <?php echo get_comments_number(); ?></span> <?php } else { echo ''; } } elseif ($metabox_options['orun-meta-opt-metabox-comment-count'] == 'show') { ?> <span><i class="far fa-comment"></i> <?php echo get_comments_number(); ?></span> <?php } elseif ($metabox_options['orun-meta-opt-metabox-comment-count'] == 'hide') { echo ''; } ?> </div> </div>