restrict_manage_comments action-hookWP 3.5.0

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

WP_Comments_List_Table::extra_tablenav()
restrict_manage_comments
wp-admin/includes/class-wp-comments-list-table.php 415
do_action( 'restrict_manage_comments' );

Where the hook is used in WordPress

Usage not found.