Ok. Let’s do it the proper way then.
In your theme, open this file:
lib/functions/utility.php
You will find this piece of code:
/** Retina Post Author */
function retina_post_author() {
$output = sprintf( '%3$s<span class="entry-author author vcard"><a href="%1$s" title="'. __( 'by %2$s', 'retina' ) .'" rel="author">%2$s</a></span>', esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_html( get_the_author() ), retina_entry_meta_sep() );
return $output;
}
So just comment out (//
) these two lines and you’ll get this:
/** Retina Post Author */
function retina_post_author() {
//$output = sprintf( '%3$s<span class="entry-author author vcard"><a href="%1$s" title="'. __( 'by %2$s', 'retina' ) .'" rel="author">%2$s</a></span>', esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_html( get_the_author() ), retina_entry_meta_sep() );
//return $output;
}
Done! You don’t need my plugin anymore…