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 WPCode)