> first comm 3 years ago RU.js 77628cf8bf first comm 3 years ago RW.js 77628cf8bf first comm 3 years ago SA.js 77628cf8bf first comm 3 years ago SB.js 77628cf8bf first comm 3 years ago SC.js 77628cf8bf first comm 3 years ago SD.js 77628cf8bf first comm 3 years ago SE.js 77628cf8bf first comm 3 years ago SG.js 77628cf8bf first comm 3 years ago SH.js 77628cf8bf first comm 3 years ago SI.js 77628cf8bf first comm 3 years ago SK.js 77628cf8bf first comm 3 years ago SL.js 77628cf8bf first comm 3 years ago SM.js 77628cf8bf first comm 3 years ago SN.js 77628cf8bf first comm 3 years ago SO.js 77628cf8bf first comm 3 years ago SR.js 77628cf8bf first comm 3 years ago ST.js 77628cf8bf first comm 3 years ago SV.js 77628cf8bf first comm 3 years ago SY.js 77628cf8bf first comm 3 years ago SZ.js 77628cf8bf first comm 3 years ago TC.js 77628cf8bf first comm 3 years ago TD.js 77628cf8bf first comm 3 years ago TG.js 77628cf8bf first comm 3 years ago TH.js 77628cf8bf first comm 3 years ago TJ.js 77628cf8bf first comm 3 years ago TK.js 77628cf8bf first comm 3 years ago TL.js 77628cf8bf first comm 3 years ago TM.js 77628cf8bf first comm 3 years ago TN.js 77628cf8bf first comm 3 years ago TO.js 77628cf8bf first comm 3 years ago TR.js 77628cf8bf first comm 3 years ago TT.js 77628cf8bf first comm 3 years ago TV.js 77628cf8bf first comm 3 years ago TW.js 77628cf8bf first comm 3 years ago TZ.js 77628cf8bf first comm 3 years ago UA.js 77628cf8bf first comm 3 years ago UG.js 77628cf8bf first comm 3 years ago US.js 77628cf8bf first comm 3 years ago UY.js 77628cf8bf first comm 3 years ago UZ.js 77628cf8bf first comm 3 years ago VA.js 77628cf8bf first comm 3 years ago VC.js 77628cf8bf first comm 3 years ago VE.js 77628cf8bf first comm 3 years ago VG.js 77628cf8bf first comm 3 years ago VI.js 77628cf8bf first comm 3 years ago VN.js 77628cf8bf first comm 3 years ago VU.js 77628cf8bf first comm 3 years ago WF.js 77628cf8bf first comm 3 years ago WS.js 77628cf8bf first comm 3 years ago YE.js 77628cf8bf first comm 3 years ago YT.js 77628cf8bf first comm 3 years ago ZA.js 77628cf8bf first comm 3 years ago ZM.js 77628cf8bf first comm 3 years ago ZW.js 77628cf8bf first comm 3 years ago alt-af.js 77628cf8bf first comm 3 years ago alt-an.js 77628cf8bf first comm 3 years ago alt-as.js 77628cf8bf first comm 3 years ago alt-eu.js 77628cf8bf first comm 3 years ago alt-na.js 77628cf8bf first comm 3 years ago alt-oc.js 77628cf8bf first comm 3 years ago alt-sa.js 77628cf8bf first comm 3 years ago alt-ww.js 77628cf8bf first comm 3 years ago tum/whitesports - Gogs: Simplico Git Service

Nav apraksta

widgets.php 1.1KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * Widget administration screen.
  4. *
  5. * @package WordPress
  6. * @subpackage Administration
  7. */
  8. /** WordPress Administration Bootstrap */
  9. require_once __DIR__ . '/admin.php';
  10. /** WordPress Administration Widgets API */
  11. require_once ABSPATH . 'wp-admin/includes/widgets.php';
  12. if ( ! current_user_can( 'edit_theme_options' ) ) {
  13. wp_die(
  14. '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' .
  15. '<p>' . __( 'Sorry, you are not allowed to edit theme options on this site.' ) . '</p>',
  16. 403
  17. );
  18. }
  19. if ( ! current_theme_supports( 'widgets' ) ) {
  20. wp_die( __( 'The theme you are currently using isn&#8217;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>.' ) );
  21. }
  22. $title = __( 'Widgets' );
  23. $parent_file = 'themes.php';
  24. if ( wp_use_widgets_block_editor() ) {
  25. require ABSPATH . 'wp-admin/widgets-form-blocks.php';
  26. } else {
  27. require ABSPATH . 'wp-admin/widgets-form.php';
  28. }