Add missing phpdoc block for `export_date_options()`.

Props siobhan for the initial patch. See #20425


git-svn-id: https://develop.svn.wordpress.org/trunk@25490 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2013-09-19 02:08:53 +00:00
parent 15265acec5
commit 44cd294f64
1 changed files with 10 additions and 0 deletions

View File

@ -109,6 +109,16 @@ if ( isset( $_GET['download'] ) ) {
require_once ('admin-header.php');
/**
* Create the date options fields for exporting a given post type.
*
* @global wpdb $wpdb WordPress database object.
* @global WP_Locale $wp_locale Date and Time Locale object.
*
* @since 3.1.0
*
* @param string $post_type The post type. Default 'post'.
*/
function export_date_options( $post_type = 'post' ) {
global $wpdb, $wp_locale;