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
371       *
372       * The dynamic portion of the hook name, $option, refers to the user option name.
373       *
374       * @since 2.5.0
375       *
376       * @param mixed   $result Value for the user's option.
377       * @param string  $option Name of the option being retrieved.
378       * @param WP_User $user   WP_User object of the user whose option is being retrieved.
379       */
380      return apply_filters( "get_user_option_{$option}", $result, $option, $user );
381 }
382
383 /**
384  * Update user option with global blog capability.
385  *
386  * User options are just like user metadata except that they have support for
387  * global blog options. If the 'global' parameter is false, which it is by default
388  * it will prepend the WordPress table prefix to the option name.
389  *