Make WordPress Core

Changeset 56157


Ignore:
Timestamp:
07/07/2023 12:34:26 AM (19 months ago)
Author:
johnbillion
Message:

Docs: Correct the formatting of various filter documentation.

See #57840

Location:
trunk/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/image-edit.php

    r55936 r56157  
    5050     * @since 6.3.0
    5151     *
    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.
    5353     */
    5454    $edit_thumbnails_separately = (bool) apply_filters( 'image_edit_thumbnails_separately', false );
  • trunk/src/wp-includes/class-wp-theme-json-resolver.php

    r56073 r56157  
    171171         * @since 6.1.0
    172172         *
    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.
    174174         */
    175175        $theme_json   = apply_filters( 'wp_theme_json_data_default', new WP_Theme_JSON_Data( $config, 'default' ) );
     
    253253             * @since 6.1.0
    254254             *
    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.
    256256             */
    257257            $theme_json      = apply_filters( 'wp_theme_json_data_theme', new WP_Theme_JSON_Data( $theme_json_data, 'theme' ) );
     
    370370         * @since 6.1.0
    371371         *
    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.
    373373         */
    374374        $theme_json = apply_filters( 'wp_theme_json_data_blocks', new WP_Theme_JSON_Data( $config, 'blocks' ) );
     
    506506                 * @since 6.1.0
    507507                 *
    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.
    509509                 */
    510510                $theme_json = apply_filters( 'wp_theme_json_data_user', new WP_Theme_JSON_Data( $config, 'custom' ) );
  • trunk/src/wp-login.php

    r55988 r56157  
    316316        ! $interim_login &&
    317317        /**
    318          * Filters the Languages select input activation on the login screen.
     318         * Filters whether to display the Language selector on the login screen.
    319319         *
    320320         * @since 5.9.0
    321321         *
    322          * @param bool Whether to display the Languages select input on the login screen.
     322         * @param bool $display Whether to display the Language selector on the login screen.
    323323         */
    324324        apply_filters( 'login_display_language_dropdown', true )
Note: See TracChangeset for help on using the changeset viewer.