2006-10-26 00:55:05 +02:00
|
|
|
<?php
|
|
|
|
require_once ('admin.php');
|
2007-11-15 06:32:33 +01:00
|
|
|
require_once('includes/export.php');
|
2006-11-18 08:31:29 +01:00
|
|
|
$title = __('Export');
|
|
|
|
$parent_file = 'edit.php';
|
2006-10-26 00:55:05 +02:00
|
|
|
|
2007-11-15 06:32:33 +01:00
|
|
|
if ( isset( $_GET['download'] ) ) {
|
|
|
|
export_wp( $_GET['author'] );
|
|
|
|
die();
|
|
|
|
}
|
2006-10-26 00:55:05 +02:00
|
|
|
|
|
|
|
require_once ('admin-header.php');
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div class="wrap">
|
|
|
|
<h2><?php _e('Export'); ?></h2>
|
|
|
|
<div class="narrow">
|
2006-12-05 08:15:12 +01:00
|
|
|
<p><?php _e('When you click the button below WordPress will create an XML file for you to save to your computer.'); ?></p>
|
2006-10-26 00:55:05 +02:00
|
|
|
<p><?php _e('This format, which we call WordPress eXtended RSS or WXR, will contain your posts, comments, custom fields, and categories.'); ?></p>
|
2006-12-27 01:51:00 +01:00
|
|
|
<p><?php _e('Once you’ve saved the download file, you can use the Import function on another WordPress blog to import this blog.'); ?></p>
|
2006-10-26 00:55:05 +02:00
|
|
|
<form action="" method="get">
|
2006-11-19 00:13:15 +01:00
|
|
|
<h3><?php _e('Optional options'); ?></h3>
|
|
|
|
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th><?php _e('Restrict Author:'); ?></th>
|
|
|
|
<td>
|
|
|
|
<select name="author">
|
|
|
|
<option value="all" selected="selected"><?php _e('All'); ?></option>
|
|
|
|
<?php
|
2007-08-21 20:27:45 +02:00
|
|
|
$authors = $wpdb->get_col( "SELECT post_author FROM $wpdb->posts GROUP BY post_author" );
|
2006-11-19 00:13:15 +01:00
|
|
|
foreach ( $authors as $id ) {
|
|
|
|
$o = get_userdata( $id );
|
|
|
|
echo "<option value='$o->ID'>$o->display_name</option>";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2006-10-26 00:55:05 +02:00
|
|
|
<p class="submit"><input type="submit" name="submit" value="<?php _e('Download Export File'); ?> »" />
|
|
|
|
<input type="hidden" name="download" value="true" />
|
|
|
|
</p>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
include ('admin-footer.php');
|
2006-11-18 02:27:22 +01:00
|
|
|
?>
|