Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: set-screen-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
402                case 'upload_per_page':
403                case 'categories_per_page':
404                case 'edit_tags_per_page':
405                case 'plugins_per_page':
406                     $value = (int) $value;
407                     if ( $value < 1 || $value > 999 )
408                          return;
409                     break;
410                default:
411                     $value = apply_filters('set-screen-option', false, $option, $value);
412                     if ( false === $value )
413                          return;
414                     break;
415           }
416
417           update_usermeta($user->ID, $option, $value);
418           wp_redirect( remove_query_arg( array('pagenum', 'apage', 'paged'), wp_get_referer() ) );
419           exit;
420      }