_e( 'Content to export'
);
?>
</legend>
<input type="hidden" name="download" value="true" />
<p><label><input type="radio" name="content" value="all" checked="checked" aria-describedby="all-content-desc" /> <?php
_e( 'All content'
); ?></label></p>
<p class="description" id="all-content-desc"><?php
_e( 'This will contain all of your posts, pages, comments, custom fields, terms, navigation menus, and custom posts.'
); ?></p>
<p><label><input type="radio" name="content" value="posts" /> <?php
_ex( 'Posts', 'post type general name'
); ?></label></p>
<ul id="post-filters" class="export-filters">
<li>
<label><span class="label-responsive"><?php
_e( 'Categories:'
); ?></span>
<?php
wp_dropdown_categories( array
( 'show_option_all' =>
__( 'All'
) ) ); ?>
</label>
</li>
<li>
<label><span class="label-responsive"><?php
_e( 'Authors:'
); ?></span>
<?php
$authors =
$wpdb->
get_col( "SELECT DISTINCT post_author FROM {
$wpdb->posts
} WHERE post_type = 'post'"
);
wp_dropdown_users( array
( 'include' =>
$authors,
'name' => 'post_author',
'multi' => true,