This page redirects to an external site: https://developer.wordpress.org/reference/functions/delete_user_option/
Delete user metadata per site or network-wide.
User options are just like user metadata except that they have support for blog-specific options when using multisite. If the $global parameter is false, which it is by default, it will prepend the WordPress table prefix to the option name. This will delete the site-specific metadata for the user, rather than the network-wide metadata.
<code style="color: #000000"><span style="color: #0000BB"><?php delete_user_option</span><span style="color: #007700">( </span><span style="color: #0000BB">$user_id</span><span style="color: #007700">, </span><span style="color: #0000BB">$option_name</span><span style="color: #007700">, </span><span style="color: #0000BB">$global </span><span style="color: #007700">); </span><span style="color: #0000BB">?></span></code>
Since: 3.0
delete_user_option() is located in wp-includes/user.php
add_user_meta(), delete_user_meta(), get_user_meta(), update_user_meta(), get_user_option(), delete_user_option(), update_user_option(),