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
846                               endforeach;
847                               ?>
848                          </div>
849                     </div>
850                </div>
851           <?php
852           // Setup layout columns
853
854           // Back compat for plugins using the filter instead of add_screen_option()
855           $columns = apply_filters( 'screen_layout_columns', array(), $this->id, $this );
856
857           if ( ! empty( $columns ) && isset( $columns[ $this->id ] ) )
858                $this->add_option( 'layout_columns', array('max' => $columns[ $this->id ] ) );
859
860           if ( $this->get_option( 'layout_columns' ) ) {
861                $this->columns = (int) get_user_option("screen_layout_$this->id");
862
863                if ( ! $this->columns && $this->get_option( 'layout_columns', 'default' ) )
864                     $this->columns = $this->get_option( 'layout_columns', 'default' );