Make WordPress Core

Changeset 25435


Ignore:
Timestamp:
09/14/2013 01:01:49 AM (11 years ago)
Author:
SergeyBiryukov
Message:

Inline documentation for hooks in wp-admin/export.php.

props mordauk.
see #25229.

File:
1 edited

Legend:

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

    r22402 r25435  
    9595    }
    9696
     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     */
    97104    $args = apply_filters( 'export_args', $args );
    98105
     
    212219<?php endforeach; ?>
    213220
    214 <?php do_action( 'export_filters' ) ?>
     221<?php
     222/**
     223 * Fires after the export filters form.
     224 *
     225 * @since 3.5.0
     226 */
     227do_action( 'export_filters' );
     228?>
    215229
    216230<?php submit_button( __('Download Export File') ); ?>
Note: See TracChangeset for help on using the changeset viewer.