Hi Rabin,
Thank you for getting back to me. I’ve seen that link before, in fact I’ve seen a lot of info about it, but where I get stumped is which part of the code do I edit. Before posting for help, I searched that content php and couldn’t figure out where to edit or add such a code because the write up is different than the example given in the link you provided as well as all the other articles I read. Plus within that content file, do I add, edit, or replace the code in each section (ie. page, archives, single post, loop?). If you could give me a bit more to work with than simply directing me to someone else’s help forum then I would certainly appreciate it.
Right now my game plan would be to do the following (but since my knowledge is very limited, I don’t want to experiment much for fear of crashing my website). This is the current code:
</h2><!– .entry-title –>
<div class=”entry-meta”>
<span class=”by-author”><?php _e( ‘By’, ‘cleanretina’ ); ?> “><?php the_author(); ?></span>
<span class=”date”>” title=”<?php echo esc_attr( get_the_time() ); ?>”><?php the_time( get_option( ‘date_format’ ) ); ?></span>
Would I then change every relevant section of the content php to?:
</h2><!– .entry-title –>
<div class=”entry-meta”>
<span class=”vcard author”>
<span class=”fn”><?php _e( ‘By’, ‘cleanretina’ ); ?> “><?php the_author(); ?></span>
<span class=”post_date date updated”>” title=”<?php echo esc_attr( get_the_time() ); ?>”><?php the_time( get_option( ‘date_format’ ) ); ?></span>
Lastly, I noticed the “loop for page” doesn’t have anything like the above.
Thanks,
Trevor