Make WordPress Core

Changeset 25490


Ignore:
Timestamp:
09/19/2013 02:08:53 AM (11 years ago)
Author:
DrewAPicture
Message:

Add missing phpdoc block for export_date_options().

Props siobhan for the initial patch. See #20425

File:
1 edited

Legend:

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

    r25435 r25490  
    110110require_once ('admin-header.php');
    111111
     112/**
     113 * Create the date options fields for exporting a given post type.
     114 *
     115 * @global wpdb      $wpdb      WordPress database object.
     116 * @global WP_Locale $wp_locale Date and Time Locale object.
     117 *
     118 * @since 3.1.0
     119 *
     120 * @param string $post_type The post type. Default 'post'.
     121 */
    112122function export_date_options( $post_type = 'post' ) {
    113123    global $wpdb, $wp_locale;
Note: See TracChangeset for help on using the changeset viewer.