tool_box
Action HookDescription
Fires at the end of the Tools Administration screen.Hook Information
File Location |
wp-admin/tools.php
View on GitHub
|
Hook Type | Action |
Line Number | 93 |
Hook Parameters
This hook doesn't accept any parameters.
Usage Examples
Basic Usage
<?php
// Hook into tool_box
add_action('tool_box', 'my_custom_function');
function my_custom_function() {
// Your custom code here
}
Source Code Context
wp-admin/tools.php:93
- How this hook is used in WordPress core
<?php
88 /**
89 * Fires at the end of the Tools Administration screen.
90 *
91 * @since 2.8.0
92 */
93 do_action( 'tool_box' );
94
95 ?>
96 </div>
97 <?php
98
PHP Documentation
<?php
/**
* Fires at the end of the Tools Administration screen.
*
* @since 2.8.0
*/
Quick Info
- Hook Type: Action
- Parameters: 0
- File: wp-admin/tools.php
Related Hooks
Related hooks will be displayed here in future updates.