On March 24, 2015 at 7:09 pm
What happens when you use your plugin with the theme?
and yes you can create a child theme easily with this plugin:
Child Theme Creator by Orbisius
and replace the code of your child theme’s single.php with this:
<div class="single_metainfo">
<i class="fa-calendar"></i><a class="comm_date"><span class="post_date" ><?php the_time( get_option('date_format') ); ?></span></a>
<i class="fa-user"></i><?php global $authordata; $post_author = "<a class='vcard' href=\"".get_author_posts_url( $authordata->ID, $authordata->user_nicename )."\"><span class='fn'>".get_the_author()."</span></a>\r\n"; echo $post_author; ?>
<?php if (!empty($post->post_password)) { ?>
<?php } else { ?>
<?php if (!empty ($asteria['post_comments_id'])) { ?>
<i class="fa-comments"></i> <div class="meta_comm"><?php comments_popup_link( __('0 Comment', 'asteria'), __('1 Comment', 'asteria'), __('% Comments', 'asteria'), '', __('Off' , 'asteria')); ?></div><?php } ?>
<?php } ?>
<i class="fa-th-list"></i><div class="catag_list"><?php the_category(', '); ?></div>
</div>