2019-11-02 10:38:58 +01:00
< ? php
/**
2021-07-23 11:58:50 +02:00
* Widget administration screen .
2019-11-02 10:38:58 +01:00
*
* @ package WordPress
* @ subpackage Administration
*/
/** WordPress Administration Bootstrap */
2020-05-06 17:23:38 +02:00
require_once __DIR__ . '/admin.php' ;
2019-11-02 10:38:58 +01:00
/** WordPress Administration Widgets API */
2020-05-06 17:23:38 +02:00
require_once ABSPATH . 'wp-admin/includes/widgets.php' ;
2019-11-02 10:38:58 +01:00
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' ) ) {
2019-11-15 22:59:44 +01:00
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>.' ) );
2019-11-02 10:38:58 +01:00
}
2021-07-23 11:58:50 +02:00
$title = __ ( 'Widgets' );
$parent_file = 'themes.php' ;
2019-11-02 10:38:58 +01:00
2021-07-23 11:58:50 +02:00
if ( wp_use_widgets_block_editor () ) {
require ABSPATH . 'wp-admin/widgets-form-blocks.php' ;
2019-11-02 10:38:58 +01:00
} else {
2021-07-23 11:58:50 +02:00
require ABSPATH . 'wp-admin/widgets-form.php' ;
2019-11-02 10:38:58 +01:00
}