export_args хук-фильтрWP 3.5.0

Filters the export args.

Использование

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(массив)
The arguments to send to the exporter.

Список изменений

С версии 3.5.0 Введена.

Где вызывается хук

В файле: /wp-admin/export.php
export_args
wp-admin/export.php 121
$args = apply_filters( 'export_args', $args );

Где используется хук в WordPress

Использование не найдено.