Reply To: How to make author not clickable?

Home Forums Iconic One Pro Support How to make author not clickable? Reply To: How to make author not clickable?

#5465

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/