- Timestamp:
- 10/07/2022 08:46:39 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/customize/class-wp-customize-nav-menus-panel.php
r52621 r54419 99 99 <?php 100 100 } 101 102 /**103 * Checks required user capabilities and whether the theme has the104 * feature support required by the panel.105 *106 * @since 5.9.0107 *108 * @return bool False if theme doesn't support the panel or the user doesn't have the capability.109 */110 public function check_capabilities() {111 /*112 * WP_Customize_Panel::$theme_supports only supports checking one113 * theme_supports, so instead we override check_capabilities().114 */115 if (116 ! current_theme_supports( 'menus' ) &&117 ! current_theme_supports( 'widgets' )118 ) {119 return false;120 }121 122 return parent::check_capabilities();123 }124 101 }
Note: See TracChangeset
for help on using the changeset viewer.