Make WordPress Core

Ticket #51325: 51325.3.diff

File 51325.3.diff, 2.2 KB (added by GeekPress, 4 years ago)

Update @since to 5.8

  • src/wp-includes/class.wp-scripts.php

    diff --git a/src/wp-includes/class.wp-scripts.php b/src/wp-includes/class.wp-scripts.php
    index a629248df4..06743453f7 100644
    a b class WP_Scripts extends WP_Dependencies { 
    299299
    300300                if ( $before_handle ) {
    301301                        $before_handle = sprintf( "<script%s id='%s-js-before'>\n%s\n</script>\n", $this->type_attr, esc_attr( $handle ), $before_handle );
     302
     303                        /**
     304                         * Filters the HTML script tag of the enqueued inline scripts to be printed before the enqueued handle script.
     305                         *
     306                         * @since 5.8
     307                         *
     308                         * @param string $before_handle The `<script>` tag for enqueued inline scripts.
     309                         * @param string $handle        The script's registered handle.
     310                         */
     311                         $before_handle = apply_filters( 'inline_script_before_loader_tag', $before_handle, $handle );
    302312                }
    303313
    304314                if ( $after_handle ) {
    305315                        $after_handle = sprintf( "<script%s id='%s-js-after'>\n%s\n</script>\n", $this->type_attr, esc_attr( $handle ), $after_handle );
     316
     317                        /**
     318                         * Filters the HTML script tag of the enqueued inline scripts to be printed after the enqueued handle script.
     319                         *
     320                         * @since 5.8
     321                         *
     322                         * @param string $before_handle The `<script>` tag for enqueued inline scripts.
     323                         * @param string $handle        The script's registered handle.
     324                         */
     325                         $after_handle = apply_filters( 'inline_script_after_loader_tag', $after_handle, $handle );
    306326                }
    307327
    308328                if ( $before_handle || $after_handle ) {
  • src/wp-includes/class.wp-styles.php

    diff --git a/src/wp-includes/class.wp-styles.php b/src/wp-includes/class.wp-styles.php
    index 2a4780222a..15cab9b0a4 100644
    a b class WP_Styles extends WP_Dependencies { 
    184184                                $this->type_attr,
    185185                                $inline_style
    186186                        );
     187
     188                        /**
     189                         * Filters the HTML link tag of the enqueued inline styles.
     190                         *
     191                         * @since 5.8
     192                         * @param string $inline_style_tag The link tag for the enqueued inline styles.
     193                         * @param string $handle           The style's registered handle.
     194                         */
     195                         $inline_style_tag = apply_filters( 'inline_style_loader_tag', $inline_style_tag, $handle );
    187196                } else {
    188197                        $inline_style_tag = '';
    189198                }