import_filters
Action HookDescription
Fires at the end of the Import screen.Hook Information
File Location |
wp-admin/import.php
View on GitHub
|
Hook Type | Action |
Line Number | 244 |
Hook Parameters
This hook doesn't accept any parameters.
Usage Examples
Basic Usage
<?php
// Hook into import_filters
add_action('import_filters', 'my_custom_function');
function my_custom_function() {
// Your custom code here
}
Source Code Context
wp-admin/import.php:244
- How this hook is used in WordPress core
<?php
239 /**
240 * Fires at the end of the Import screen.
241 *
242 * @since 6.8.0
243 */
244 do_action( 'import_filters' );
245 ?>
246
247 </div>
248
249 <?php
PHP Documentation
<?php
/**
* Fires at the end of the Import screen.
*
* @since 6.8.0
*/
Quick Info
- Hook Type: Action
- Parameters: 0
- File: wp-admin/import.php
Related Hooks
Related hooks will be displayed here in future updates.