export_filters
Action HookDescription
Fires at the end of the export filters form.Hook Information
File Location |
wp-admin/export.php
View on GitHub
|
Hook Type | Action |
Line Number | 342 |
Hook Parameters
This hook doesn't accept any parameters.
Usage Examples
Basic Usage
<?php
// Hook into export_filters
add_action('export_filters', 'my_custom_function');
function my_custom_function() {
// Your custom code here
}
Source Code Context
wp-admin/export.php:342
- How this hook is used in WordPress core
<?php
337 /**
338 * Fires at the end of the export filters form.
339 *
340 * @since 3.5.0
341 */
342 do_action( 'export_filters' );
343 ?>
344
345 <?php submit_button( __( 'Download Export File' ) ); ?>
346 </form>
347 </div>
PHP Documentation
<?php
/**
* Fires at the end of the export filters form.
*
* @since 3.5.0
*/
Quick Info
- Hook Type: Action
- Parameters: 0
- File: wp-admin/export.php
Related Hooks
Related hooks will be displayed here in future updates.