Home › Forums › Iconic One Pro Support › How to make author not clickable? › Reply To: How to make author not clickable?
March 4, 2019 at 1:28 pm #5465
Themonic-Support
Keymaster
Line 30 of content.php is
<span class="fn"><?php echo the_author_posts_link(); ?></span>
Replace it with something like
<span class="fn"><?php echo get_the_author_meta( 'display_name'); ?></span>
More options and refer: https://developer.wordpress.org/reference/functions/get_the_author_meta/