Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: get_user_option_{$option}

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
89           $user = get_userdata($user);
90
91      if ( isset( $user->{$wpdb->prefix . $option} ) ) // Blog specific
92           $result = $user->{$wpdb->prefix . $option};
93      elseif ( isset( $user->{$option} ) ) // User specific and cross-blog
94           $result = $user->{$option};
95      else // Blog global
96           $result = get_option( $option );
97      
98      return apply_filters("get_user_option_{$option}", $result, $option, $user);
99 }
100
101 function update_user_option( $user_id, $option_name, $newvalue, $global = false ) {
102      global $wpdb;
103      if ( !$global )
104           $option_name = $wpdb->prefix . $option_name;
105      return update_usermeta( $user_id, $option_name, $newvalue );
106 }
107