Skip to content

Snippet: Add Rel Nofollow To Top Bar Social Links

add_filter( 'totaltheme/topbar/social/link_attributes', function( $attrs ) {
	$attrs['rel'] = 'nofollow';
	return $attrs;
} );
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