Changeset 61433 for trunk/src/wp-includes/class-wp-customize-widgets.php
- Timestamp:
- 01/05/2026 05:39:38 AM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-widgets.php
r60909 r61433 925 925 <?php 926 926 $panel = $this->manager->get_panel( 'widgets' ); 927 $panel_title = isset( $panel->title ) ? $panel->title :__( 'Widgets' );927 $panel_title = $panel->title ?? __( 'Widgets' ); 928 928 /* translators: ▸ is the unicode right-pointing triangle. %s: Section title in the Customizer. */ 929 929 printf( __( 'Customizing ▸ %s' ), esc_html( $panel_title ) ); … … 1124 1124 $available_widget, 1125 1125 array( 1126 'temp_id' => isset( $args['_temp_id'] ) ? $args['_temp_id'] :null,1126 'temp_id' => $args['_temp_id'] ?? null, 1127 1127 'is_multi' => $is_multi_widget, 1128 1128 'control_tpl' => $control_tpl,
Note: See TracChangeset
for help on using the changeset viewer.