Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: views_{$screen->id}

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
235       * Display the list of views available on this table.
236       *
237       * @since 3.1.0
238       * @access public
239       */
240      function views() {
241           $screen = get_current_screen();
242
243           $views = $this->get_views();
244           $views = apply_filters( 'views_' . $screen->id, $views );
245
246           if ( empty( $views ) )
247                return;
248
249           echo "<ul class='subsubsub'>\n";
250           foreach ( $views as $class => $view ) {
251                $views[ $class ] = "\t<li class='$class'>$view";
252           }
253           echo implode( " |</li>\n", $views ) . "</li>\n";