WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
469 | * @since 2.1.0 |
470 | * @since 4.4.0 The `$post_type` parameter was added. |
471 | * @since 4.6.0 The `$which` parameter was added. |
472 | * |
473 | * @param string $post_type The post type slug. |
474 | * @param string $which The location of the extra table nav markup: |
475 | * 'top' or 'bottom' for WP_Posts_List_Table, |
476 | * 'bar' for WP_Media_List_Table. |
477 | */ |
478 | do_action( 'restrict_manage_posts', $this->screen->post_type, $which ); |
479 |
|
480 | $output = ob_get_clean(); |
481 |
|
482 | if ( ! empty( $output ) ) { |
483 | echo $output; |
484 | submit_button( __( 'Filter' ), '', 'filter_action', false, array( 'id' => 'post-query-submit' ) ); |
485 | } |
486 | } |
487 |
|