Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: image_size_names_choose

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
583      public function wp_set_background_image() {
584           if ( ! current_user_can( 'edit_theme_options' ) || ! isset( $_POST['attachment_id'] ) ) {
585                exit;
586           }
587
588           $attachment_id = absint( $_POST['attachment_id'] );
589
590           $sizes = array_keys(
591                /** This filter is documented in wp-admin/includes/media.php */
592                apply_filters(
593                     'image_size_names_choose',
594                     array(
595                          'thumbnail' => __( 'Thumbnail' ),
596                          'medium'    => __( 'Medium' ),
597                          'large'     => __( 'Large' ),
598                          'full'      => __( 'Full Size' ),
599                     )
600                )
601           );