export_args filter-hookWP 3.5.0

Filters the export args.

Usage

add_filter( 'export_args', 'wp_kama_export_args_filter' );

/**
 * Function for `export_args` filter-hook.
 * 
 * @param array $args The arguments to send to the exporter.
 *
 * @return array
 */
function wp_kama_export_args_filter( $args ){

	// filter...
	return $args;
}
$args(array)
The arguments to send to the exporter.

Changelog

Since 3.5.0 Introduced.

Where the hook is called

In file: /wp-admin/export.php
export_args
wp-admin/export.php 121
$args = apply_filters( 'export_args', $args );

Where the hook is used in WordPress

Usage not found.