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
264      $key = str_replace('-', '', $option);
265
266      if ( isset( $user->{$wpdb->prefix . $key} ) ) // Blog specific
267           $result = $user->{$wpdb->prefix . $key};
268      elseif ( isset( $user->{$key} ) ) // User specific and cross-blog
269           $result = $user->{$key};
270      else
271           $result = false;
272
273      return apply_filters("get_user_option_{$option}", $result, $option, $user);
274 }
275
276 /**
277  * Update user option with global blog capability.
278  *
279  * User options are just like user metadata except that they have support for
280  * global blog options. If the 'global' parameter is false, which it is by default
281  * it will prepend the WordPress table prefix to the option name.
282  *