Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: restrict_manage_posts

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
472                 *
473                 * @since 2.1.0
474                 * @since 4.4.0 The `$post_type` parameter was added.
475                 * @since 4.6.0 The `$which` parameter was added.
476                 *
477                 * @param string $post_type The post type slug.
478                 * @param string $which     The location of the extra table nav markup:
479                 *                          'top' or 'bottom'.
480                 */
481                do_action( 'restrict_manage_posts', $this->screen->post_type, $which );
482
483                $output = ob_get_clean();
484
485                if ( ! empty( $output ) ) {
486                     echo $output;
487                     submit_button( __( 'Filter' ), '', 'filter_action', false, array( 'id' => 'post-query-submit' ) );
488                }
489           }
490