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
549                 * @since 2.1.0
550                 * @since 4.4.0 The `$post_type` parameter was added.
551                 * @since 4.6.0 The `$which` parameter was added.
552                 *
553                 * @param string $post_type The post type slug.
554                 * @param string $which     The location of the extra table nav markup:
555                 *                          'top' or 'bottom' for WP_Posts_List_Table,
556                 *                          'bar' for WP_Media_List_Table.
557                 */
558                do_action( 'restrict_manage_posts', $this->screen->post_type, $which );
559
560                $output = ob_get_clean();
561
562                if ( ! empty( $output ) ) {
563                     echo $output;
564                     submit_button( __( 'Filter' ), '', 'filter_action', false, array( 'id' => 'post-query-submit' ) );
565                }
566           }
567