Make WordPress Core

Ticket #63654: 63654.patch

File 63654.patch, 589 bytes (added by viralsampat, 14 months ago)

I have checked above mentioned issue and resolved it. Here, I have added my patch.

  • src/wp-content/themes/twentytwenty/functions.php

    diff --git src/wp-content/themes/twentytwenty/functions.php src/wp-content/themes/twentytwenty/functions.php
    index 96945243fa..a3ca940c4d 100644
    if ( ! function_exists( 'wp_body_open' ) ) {  
    361361         * @since Twenty Twenty 1.0
    362362         */
    363363        function wp_body_open() {
    364                 /** This action is documented in wp-includes/general-template.php */
     364                /**
     365                 * Triggered after the opening <body> tag.
     366                 *
     367                 * @since Twenty Twenty 1.0
     368                 */
    365369                do_action( 'wp_body_open' );
    366370        }
    367371}