Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: screen_layout_columns

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
796                               endforeach;
797                               ?>
798                          </div>
799                     </div>
800                </div>
801           <?php
802           // Setup layout columns
803
804           // Back compat for plugins using the filter instead of add_screen_option()
805           $columns = apply_filters( 'screen_layout_columns', array(), $this->id, $this );
806
807           if ( ! empty( $columns ) && isset( $columns[ $this->id ] ) )
808                $this->add_option( 'layout_columns', array('max' => $columns[ $this->id ] ) );
809
810           if ( $this->get_option( 'layout_columns' ) ) {
811                $this->columns = (int) get_user_option("screen_layout_$this->id");
812
813                if ( ! $this->columns && $this->get_option( 'layout_columns', 'default' ) )
814                     $this->columns = $this->get_option( 'layout_columns', 'default' );