Site logo

Archived topic

Nofollow author link

3 replies · Started by Manu on June 4, 2019

Viewing posts 1–4 of 4

Hello

Is it possible to nofollow author name link with a function?

Thanks!

Hi there,

Try this PHP snippet:

add_filter( 'generate_post_author_output', function() {
    printf( ' <span class="byline">%1$s</span>',
        sprintf( '<span class="author vcard" %5$s>%1$s <a class="url fn n" href="%2$s" title="%3$s" rel="nofollow" itemprop="url"><span class="author-name" itemprop="name">%4$s</span></a></span>',
		__( 'by', 'generatepress' ),
		esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
		/* translators: 1: Author name */
		esc_attr( sprintf( __( 'View all posts by %s', 'generatepress' ), get_the_author() ) ),
		esc_html( get_the_author() ),
		generate_get_microdata( 'post-author' )
	)
    );
} );

Adding PHP: https://docs.generatepress.com/article/adding-php/

Let me know :)

I'm sorry, it works correctly. I had checked it wrong: D

Thank you very much for the quick help!

No problem :)

This archived topic is closed to new replies.