WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
97 | $user = get_userdata($user); |
98 |
|
99 | if ( isset( $user->{$wpdb->prefix . $option} ) ) // Blog specific |
100 | $result = $user->{$wpdb->prefix . $option}; |
101 | elseif ( isset( $user->{$option} ) ) // User specific and cross-blog |
102 | $result = $user->{$option}; |
103 | else // Blog global |
104 | $result = get_option( $option ); |
105 | |
106 | return apply_filters("get_user_option_{$option}", $result, $option, $user); |
107 | } |
108 |
|
109 | function update_user_option( $user_id, $option_name, $newvalue, $global = false ) { |
110 | global $wpdb; |
111 | if ( !$global ) |
112 | $option_name = $wpdb->prefix . $option_name; |
113 | return update_usermeta( $user_id, $option_name, $newvalue ); |
114 | } |
115 |
|