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