Changeset 56157
- Timestamp:
- 07/07/2023 12:34:26 AM (19 months ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/image-edit.php
r55936 r56157 50 50 * @since 6.3.0 51 51 * 52 * @param bool Whether to show the settings in the Image Editor. Default false.52 * @param bool $show Whether to show the settings in the Image Editor. Default false. 53 53 */ 54 54 $edit_thumbnails_separately = (bool) apply_filters( 'image_edit_thumbnails_separately', false ); -
trunk/src/wp-includes/class-wp-theme-json-resolver.php
r56073 r56157 171 171 * @since 6.1.0 172 172 * 173 * @param WP_Theme_JSON_Data Class to access and update the underlying data.173 * @param WP_Theme_JSON_Data $theme_json Class to access and update the underlying data. 174 174 */ 175 175 $theme_json = apply_filters( 'wp_theme_json_data_default', new WP_Theme_JSON_Data( $config, 'default' ) ); … … 253 253 * @since 6.1.0 254 254 * 255 * @param WP_Theme_JSON_Data Class to access and update the underlying data.255 * @param WP_Theme_JSON_Data $theme_json Class to access and update the underlying data. 256 256 */ 257 257 $theme_json = apply_filters( 'wp_theme_json_data_theme', new WP_Theme_JSON_Data( $theme_json_data, 'theme' ) ); … … 370 370 * @since 6.1.0 371 371 * 372 * @param WP_Theme_JSON_Data Class to access and update the underlying data.372 * @param WP_Theme_JSON_Data $theme_json Class to access and update the underlying data. 373 373 */ 374 374 $theme_json = apply_filters( 'wp_theme_json_data_blocks', new WP_Theme_JSON_Data( $config, 'blocks' ) ); … … 506 506 * @since 6.1.0 507 507 * 508 * @param WP_Theme_JSON_Data Class to access and update the underlying data.508 * @param WP_Theme_JSON_Data $theme_json Class to access and update the underlying data. 509 509 */ 510 510 $theme_json = apply_filters( 'wp_theme_json_data_user', new WP_Theme_JSON_Data( $config, 'custom' ) ); -
trunk/src/wp-login.php
r55988 r56157 316 316 ! $interim_login && 317 317 /** 318 * Filters the Languages select input activationon the login screen.318 * Filters whether to display the Language selector on the login screen. 319 319 * 320 320 * @since 5.9.0 321 321 * 322 * @param bool Whether to display the Languages select inputon the login screen.322 * @param bool $display Whether to display the Language selector on the login screen. 323 323 */ 324 324 apply_filters( 'login_display_language_dropdown', true )
Note: See TracChangeset
for help on using the changeset viewer.