2007-04-24 03:05:17 +02:00
< ? php
2008-08-16 09:27:34 +02:00
/**
2021-05-25 10:40:25 +02:00
* Widget administration screen .
2008-08-16 09:27:34 +02:00
*
* @ package WordPress
* @ subpackage Administration
*/
2007-04-24 03:05:17 +02:00
2008-08-16 09:27:34 +02:00
/** WordPress Administration Bootstrap */
2020-02-06 07:33:11 +01:00
require_once __DIR__ . '/admin.php' ;
2008-08-16 09:27:34 +02:00
/** WordPress Administration Widgets API */
2020-02-06 07:33:11 +01:00
require_once ABSPATH . 'wp-admin/includes/widgets.php' ;
2007-04-24 03:05:17 +02:00
2015-09-03 10:56:24 +02:00
if ( ! current_user_can ( 'edit_theme_options' ) ) {
wp_die (
2018-02-19 03:13:32 +01:00
'<h1>' . __ ( 'You need a higher level of permission.' ) . '</h1>' .
2016-06-29 17:16:29 +02:00
'<p>' . __ ( 'Sorry, you are not allowed to edit theme options on this site.' ) . '</p>' ,
2015-09-03 10:56:24 +02:00
403
);
}
2007-05-04 19:52:22 +02:00
2021-06-02 03:57:57 +02:00
if ( ! current_theme_supports ( 'widgets' ) ) {
wp_die ( __ ( 'The theme you are currently using isn’t 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>.' ) );
}
2021-07-22 15:53:00 +02:00
// Used in the HTML title tag.
2017-12-01 00:11:00 +01:00
$title = __ ( 'Widgets' );
2008-01-05 00:34:33 +01:00
$parent_file = 'themes.php' ;
2007-06-14 04:25:30 +02:00
2021-05-25 10:40:25 +02:00
if ( wp_use_widgets_block_editor () ) {
require ABSPATH . 'wp-admin/widgets-form-blocks.php' ;
2013-11-20 06:09:10 +01:00
} else {
2021-05-25 10:40:25 +02:00
require ABSPATH . 'wp-admin/widgets-form.php' ;
2013-11-20 05:45:10 +01:00
}