H69UNtblNBNpha2dtB1Odn8qYp1Qk5NK2gi7yfceofo9N
e:
/
home
/
ajudasindico
/
Web
/
16dezoito
/
weecook
/
wp-admin
/
Nama File / Folder
Size
Action
css
--
NONE
images
--
NONE
includes
--
NONE
js
--
NONE
maint
--
NONE
network
--
NONE
user
--
NONE
admin-ajax.php
3.556KB
Hapus
Edit
Rename
admin-footer.php
2.345KB
Hapus
Edit
Rename
admin-functions.php
0.394KB
Hapus
Edit
Rename
admin-post.php
1.646KB
Hapus
Edit
Rename
admin.php
10.647KB
Hapus
Edit
Rename
comment.php
9.839KB
Hapus
Edit
Rename
credits.php
5.012KB
Hapus
Edit
Rename
custom-background.php
16.841KB
Hapus
Edit
Rename
custom-header.php
43.191KB
Hapus
Edit
Rename
customize.php
5.256KB
Hapus
Edit
Rename
edit-comments.php
12.852KB
Hapus
Edit
Rename
edit-form-advanced.php
31.325KB
Hapus
Edit
Rename
edit-form-comment.php
7.241KB
Hapus
Edit
Rename
edit-link-form.php
5.887KB
Hapus
Edit
Rename
edit-tag-form.php
8.333KB
Hapus
Edit
Rename
edit-tags.php
20.166KB
Hapus
Edit
Rename
edit.php
14.994KB
Hapus
Edit
Rename
import.php
5.093KB
Hapus
Edit
Rename
index.php
5.907KB
Hapus
Edit
Rename
install.php
15.009KB
Hapus
Edit
Rename
link-add.php
0.695KB
Hapus
Edit
Rename
link-manager.php
3.505KB
Hapus
Edit
Rename
link-parse-opml.php
2.04KB
Hapus
Edit
Rename
link.php
2.563KB
Hapus
Edit
Rename
load-scripts.php
1.77KB
Hapus
Edit
Rename
load-styles.php
2.317KB
Hapus
Edit
Rename
media-new.php
3.056KB
Hapus
Edit
Rename
media-upload.php
3.229KB
Hapus
Edit
Rename
media.php
5.104KB
Hapus
Edit
Rename
menu-header.php
8.848KB
Hapus
Edit
Rename
menu.php
12.5KB
Hapus
Edit
Rename
moderation.php
0.313KB
Hapus
Edit
Rename
ms-admin.php
0.206KB
Hapus
Edit
Rename
ms-edit.php
0.226KB
Hapus
Edit
Rename
ms-options.php
0.23KB
Hapus
Edit
Rename
ms-sites.php
0.223KB
Hapus
Edit
Rename
ms-themes.php
0.225KB
Hapus
Edit
Rename
ms-upgrade-network.php
0.227KB
Hapus
Edit
Rename
ms-users.php
0.223KB
Hapus
Edit
Rename
my-sites.php
4.521KB
Hapus
Edit
Rename
nav-menus.php
39.08KB
Hapus
Edit
Rename
network.php
5.254KB
Hapus
Edit
Rename
options-discussion.php
13.885KB
Hapus
Edit
Rename
options-general.php
14.402KB
Hapus
Edit
Rename
options-head.php
0.48KB
Hapus
Edit
Rename
options-permalink.php
14.741KB
Hapus
Edit
Rename
options-writing.php
7.856KB
Hapus
Edit
Rename
options.php
11.056KB
Hapus
Edit
Rename
plugin-editor.php
11.724KB
Hapus
Edit
Rename
plugin-install.php
5.187KB
Hapus
Edit
Rename
plugins.php
21.673KB
Hapus
Edit
Rename
post-new.php
2.666KB
Hapus
Edit
Rename
post.php
7.659KB
Hapus
Edit
Rename
press-this.php
0.68KB
Hapus
Edit
Rename
profile.php
0.289KB
Hapus
Edit
Rename
revision.php
4.899KB
Hapus
Edit
Rename
setup-config.php
13.964KB
Hapus
Edit
Rename
theme-editor.php
11.372KB
Hapus
Edit
Rename
theme-install.php
11.745KB
Hapus
Edit
Rename
themes.php
19.193KB
Hapus
Edit
Rename
tools.php
5.442KB
Hapus
Edit
Rename
update-core.php
28.559KB
Hapus
Edit
Rename
update.php
10.215KB
Hapus
Edit
Rename
upgrade.php
4.406KB
Hapus
Edit
Rename
upload.php
12.117KB
Hapus
Edit
Rename
user-edit.php
24.169KB
Hapus
Edit
Rename
user-new.php
19.523KB
Hapus
Edit
Rename
widgets.php
17.684KB
Hapus
Edit
Rename
<=Back
<?php /** * Manage media uploaded file. * * There are many filters in here for media. Plugins can extend functionality * by hooking into the filters. * * @package WordPress * @subpackage Administration */ /** Load WordPress Administration Bootstrap */ require_once( dirname( __FILE__ ) . '/admin.php' ); if (!current_user_can('upload_files')) wp_die(__('You do not have permission to upload files.')); wp_enqueue_script('plupload-handlers'); $post_id = 0; if ( isset( $_REQUEST['post_id'] ) ) { $post_id = absint( $_REQUEST['post_id'] ); if ( ! get_post( $post_id ) || ! current_user_can( 'edit_post', $post_id ) ) $post_id = 0; } if ( $_POST ) { if ( isset($_POST['html-upload']) && !empty($_FILES) ) { check_admin_referer('media-form'); // Upload File button was clicked $upload_id = media_handle_upload( 'async-upload', $post_id ); if ( is_wp_error( $upload_id ) ) { wp_die( $upload_id ); } } wp_redirect( admin_url( 'upload.php' ) ); exit; } $title = __('Upload New Media'); $parent_file = 'upload.php'; get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __('Overview'), 'content' => '<p>' . __('You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:') . '</p>' . '<ul>' . '<li>' . __('<strong>Drag and drop</strong> your files into the area below. Multiple files are allowed.') . '</li>' . '<li>' . __('Clicking <strong>Select Files</strong> opens a navigation window showing you files in your operating system. Selecting <strong>Open</strong> after clicking on the file you want activates a progress bar on the uploader screen.') . '</li>' . '<li>' . __('Revert to the <strong>Browser Uploader</strong> by clicking the link below the drag and drop box.') . '</li>' . '</ul>' ) ); get_current_screen()->set_help_sidebar( '<p><strong>' . __('For more information:') . '</strong></p>' . '<p>' . __('<a href="https://codex.wordpress.org/Media_Add_New_Screen" target="_blank">Documentation on Uploading Media Files</a>') . '</p>' . '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' ); require_once( ABSPATH . 'wp-admin/admin-header.php' ); $form_class = 'media-upload-form type-form validate'; if ( get_user_setting('uploader') || isset( $_GET['browser-uploader'] ) ) $form_class .= ' html-uploader'; ?> <div class="wrap"> <h1><?php echo esc_html( $title ); ?></h1> <form enctype="multipart/form-data" method="post" action="<?php echo admin_url('media-new.php'); ?>" class="<?php echo esc_attr( $form_class ); ?>" id="file-form"> <?php media_upload_form(); ?> <script type="text/javascript"> var post_id = <?php echo $post_id; ?>, shortform = 3; </script> <input type="hidden" name="post_id" id="post_id" value="<?php echo $post_id; ?>" /> <?php wp_nonce_field('media-form'); ?> <div id="media-items" class="hide-if-no-js"></div> </form> </div> <?php include( ABSPATH . 'wp-admin/admin-footer.php' );
Liking