activity_box_end
The WordPress Core activity box end hook.
Description
Parameters (1)
- 0. $wp_dashboard_quota (string) =>
'wp_dashboard_quota'
- The
wp
dashboard quota.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'activity_box_end', $wp_dashboard_quota );
- The following example is for adding a hook callback.
- // define the activity_box_end callback
- function action_activity_box_end( $wp_dashboard_quota ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'activity_box_end', 'action_activity_box_end', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'activity_box_end', 'action_activity_box_end', 10, 1 );
Defined (2)
The action is defined in the following location(s).
- /wp-admin/includes/admin-filters.php
- add_action( 'activity_box_end', 'wp_dashboard_quota' );
- /wp-admin/includes/dashboard.php
- do_action( 'activity_box_end' );