Skip to content

Snippet: Remove Author Links from Post Meta & Author Bio

// Remove author URL from bio
add_filter( 'wpex_post_author_bio_data', function( $data ) {
	unset( $data['posts_url'] );
	return $data;
} );

// Remove author URL from WordPress the_author_posts_link function
add_filter( 'the_author_posts_link', function( $link ) {
	if ( ! is_admin() ) {
		return get_the_author();
	}
	return $link;
} );
All PHP snippets should be added via child theme's functions.php file or via a plugin. We recommend Code Snippets (100% Free) or WPCode (sponsored)
Back To Top