From 10ced8374374b7bb1b8837c522fb1bb0973f40a8 Mon Sep 17 00:00:00 2001
From: Siobhan McKeown <siobhan@wordsforwp.com>
Date: Sun, 30 Sep 2012 15:01:48 +0100
Subject: [PATCH] Updated docblocks for export.php
---
wp-admin/export.php | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/wp-admin/export.php b/wp-admin/export.php
index cf50566..bd6aae9 100644
a
|
b
|
if ( isset( $_GET['download'] ) ) { |
100 | 100 | |
101 | 101 | require_once ('admin-header.php'); |
102 | 102 | |
| 103 | /** |
| 104 | * Creates the options fields for exporting a given post type |
| 105 | * |
| 106 | * @since 3.1 |
| 107 | * |
| 108 | * @uses $wpdb reads data from any table in the WordPress database, not just the standard tables that WordPress creates |
| 109 | * @uses $wp_locale localizes the month name |
| 110 | * |
| 111 | * @param $post_type the given post type, defaulted to post |
| 112 | */ |
| 113 | |
103 | 114 | function export_date_options( $post_type = 'post' ) { |
104 | 115 | global $wpdb, $wp_locale; |
105 | 116 | |