Hi. You guys just helped me change my posts to list modified date and hyperlink the author. I would have just continued the conversation on that thread but it is now locked. Here it is for your reference.
Now, I’d like to change two things:
- Remove the pencil icon
- Make the text of the hyperlinked author’s name red instead of black.
What code would I need for that? I assume it would be modification of this below. (You provided me with the full code in the other support thread I linked above)
//
// Author.
//
$author = sprintf( __( 'by %s', '__x__' ), get_the_author() ) . '</span>';
$author = sprintf( 'by <a href="https://barbellrehab.com/about/" title="Post by %1$s"><i class="x-icon-pencil" data-x-icon=""></i> %1$s</a></span>',
get_the_author(),
get_the_author_link()
);
I’ve attached pic of what it looks like now. Again, just want to remove the pencil icon and make the author’s name (Dr. Michael Mash) red instead of black. Thanks
