Make WordPress Core

Changeset 22392


Ignore:
Timestamp:
11/06/2012 12:06:44 AM (13 years ago)
Author:
nacin
Message:

Add the export_filters and wp_export_args hooks. props MartyThornley, brandondove. fixes #19863.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/export.php

    r21994 r22392  
    9595    }
    9696
     97    $args = apply_filters( 'wp_export_args', $args );
     98
    9799    export_wp( $args );
    98100    die();
     
    210212<?php endforeach; ?>
    211213
     214<?php do_action( 'export_filters' ) ?>
     215
    212216<?php submit_button( __('Download Export File') ); ?>
    213217</form>
Note: See TracChangeset for help on using the changeset viewer.