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