restrict_manage_comments
Fires just before the Filter submit button for comment types.
Usage
add_action( 'restrict_manage_comments', 'wp_kama_restrict_manage_comments_action' );
/**
* Function for `restrict_manage_comments` action-hook.
*
* @return void
*/
function wp_kama_restrict_manage_comments_action(){
// action...
}Changelog
| Since 3.5.0 | Introduced. |
Where the hook is called
restrict_manage_comments
wp-admin/includes/class-wp-comments-list-table.php 439
do_action( 'restrict_manage_comments' );