Changeset 56157 for trunk/src/wp-includes/class-wp-theme-json-resolver.php
- Timestamp:
- 07/07/2023 12:34:26 AM (20 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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' ) );
Note: See TracChangeset
for help on using the changeset viewer.