Make WordPress Core


Ignore:
Timestamp:
05/30/2023 05:43:27 PM (2 years ago)
Author:
johnbillion
Message:

Docs: Miscellaneous corrections and improvements to docblocks.

See #57840

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/script-loader.php

    r55860 r55870  
    30883088 *
    30893089 * @param string $block_name The block-name, including namespace.
    3090  * @param array  $args       An array of arguments [handle,src,deps,ver,media].
     3090 * @param array  $args       {
     3091 *     An array of arguments. See wp_register_style() for full information about each argument.
     3092 *
     3093 *     @type string           $handle The handle for the stylesheet.
     3094 *     @type string|false     $src    The source URL of the stylesheet.
     3095 *     @type string[]         $deps   Array of registered stylesheet handles this stylesheet depends on.
     3096 *     @type string|bool|null $ver    Stylesheet version number.
     3097 *     @type string           $media  The media for which this stylesheet has been defined.
     3098 * }
    30913099 */
    30923100function wp_enqueue_block_style( $block_name, $args ) {
Note: See TracChangeset for help on using the changeset viewer.