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 |
---|---|
96 | ?> |
97 | <div class="actions"> |
98 | <?php |
99 | if ( ! is_singular() ) { |
100 | if ( ! $this->is_trash ) { |
101 | $this->months_dropdown( 'attachment' ); |
102 | } |
103 |
|
104 | /** This action is documented in wp-admin/includes/class-wp-posts-list-table.php */ |
105 | do_action( 'restrict_manage_posts' ); |
106 | submit_button( __( 'Filter' ), 'button', 'filter_action', false, array( 'id' => 'post-query-submit' ) ); |
107 | } |
108 |
|
109 | if ( $this->is_trash && current_user_can( 'edit_others_posts' ) ) { |
110 | submit_button( __( 'Empty Trash' ), 'apply', 'delete_all', false ); |
111 | } ?> |
112 | </div> |
113 | <?php |
114 | } |