Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: user_aim_label

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
262      <td><input type="text" name="email" id="email" value="<?php echo esc_attr($profileuser->user_email) ?>" class="regular-text" /></td>
263 </tr>
264
265 <tr>
266      <th><label for="url"><?php _e('Website') ?></label></th>
267      <td><input type="text" name="url" id="url" value="<?php echo esc_attr($profileuser->user_url) ?>" class="regular-text code" /></td>
268 </tr>
269
270 <tr>
271      <th><label for="aim"><?php echo apply_filters('user_aim_label', __('AIM')); ?></label></th>
272      <td><input type="text" name="aim" id="aim" value="<?php echo esc_attr($profileuser->aim) ?>" class="regular-text" /></td>
273 </tr>
274
275 <tr>
276      <th><label for="yim"><?php echo apply_filters('user_yim_label', __('Yahoo IM')); ?></label></th>
277      <td><input type="text" name="yim" id="yim" value="<?php echo esc_attr($profileuser->yim) ?>" class="regular-text" /></td>
278 </tr>
279
280 <tr>