Changeset 25435
- Timestamp:
- 09/14/2013 01:01:49 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/export.php
r22402 r25435 95 95 } 96 96 97 /** 98 * Filter the export args. 99 * 100 * @since 3.5.0 101 * 102 * @param array $args The arguments to send to the exporter. 103 */ 97 104 $args = apply_filters( 'export_args', $args ); 98 105 … … 212 219 <?php endforeach; ?> 213 220 214 <?php do_action( 'export_filters' ) ?> 221 <?php 222 /** 223 * Fires after the export filters form. 224 * 225 * @since 3.5.0 226 */ 227 do_action( 'export_filters' ); 228 ?> 215 229 216 230 <?php submit_button( __('Download Export File') ); ?>
Note: See TracChangeset
for help on using the changeset viewer.