Make WordPress Core

Ticket #46679: 46679-back-comp.2.patch

File 46679-back-comp.2.patch, 6.8 KB (added by ramiy, 5 years ago)
  • wp-content/themes/twentyeleven/functions.php

     
    881881        return $args;
    882882}
    883883add_filter( 'widget_tag_cloud_args', 'twentyeleven_widget_tag_cloud_args' );
     884
     885if ( ! function_exists( 'wp_body_open' ) ) :
     886        /**
     887         * Fire the wp_body_open action.
     888         *
     889         * Added for backwards compatibility to support pre 5.2.0 WordPress versions.
     890         *
     891         * @since Twenty Eleven 3.3
     892         */
     893        function wp_body_open() {
     894                /**
     895                 * Triggered after the opening <body> tag.
     896                 *
     897                 * @since Twenty Eleven 3.3
     898                 */
     899                do_action( 'wp_body_open' );
     900        }
     901endif;
  • wp-content/themes/twentyfifteen/inc/template-tags.php

     
    267267                }
    268268        }
    269269endif;
     270
     271if ( ! function_exists( 'wp_body_open' ) ) :
     272        /**
     273         * Fire the wp_body_open action.
     274         *
     275         * Added for backwards compatibility to support pre 5.2.0 WordPress versions.
     276         *
     277         * @since Twenty Fifteen 2.5
     278         */
     279        function wp_body_open() {
     280                /**
     281                 * Triggered after the opening <body> tag.
     282                 *
     283                 * @since Twenty Fifteen 2.5
     284                 */
     285                do_action( 'wp_body_open' );
     286        }
     287endif;
  • wp-content/themes/twentyfourteen/inc/template-tags.php

     
    232232        }
    233233        add_filter( 'excerpt_more', 'twentyfourteen_excerpt_more' );
    234234endif;
     235
     236if ( ! function_exists( 'wp_body_open' ) ) :
     237        /**
     238         * Fire the wp_body_open action.
     239         *
     240         * Added for backwards compatibility to support pre 5.2.0 WordPress versions.
     241         *
     242         * @since Twenty Fourteen 2.7
     243         */
     244        function wp_body_open() {
     245                /**
     246                 * Triggered after the opening <body> tag.
     247                 *
     248                 * @since Twenty Fourteen 2.7
     249                 */
     250                do_action( 'wp_body_open' );
     251        }
     252endif;
  • wp-content/themes/twentynineteen/inc/template-tags.php

     
    238238                );
    239239        }
    240240endif;
     241
     242if ( ! function_exists( 'wp_body_open' ) ) :
     243        /**
     244         * Fire the wp_body_open action.
     245         *
     246         * Added for backwards compatibility to support pre 5.2.0 WordPress versions.
     247         *
     248         * @since Twenty Nineteen 1.4
     249         */
     250        function wp_body_open() {
     251                /**
     252                 * Triggered after the opening <body> tag.
     253                 *
     254                 * @since Twenty Nineteen 1.4
     255                 */
     256                do_action( 'wp_body_open' );
     257        }
     258endif;
  • wp-content/themes/twentyseventeen/inc/template-tags.php

     
    198198}
    199199add_action( 'edit_category', 'twentyseventeen_category_transient_flusher' );
    200200add_action( 'save_post', 'twentyseventeen_category_transient_flusher' );
     201
     202if ( ! function_exists( 'wp_body_open' ) ) :
     203        /**
     204         * Fire the wp_body_open action.
     205         *
     206         * Added for backwards compatibility to support pre 5.2.0 WordPress versions.
     207         *
     208         * @since Twenty Seventeen 2.2
     209         */
     210        function wp_body_open() {
     211                /**
     212                 * Triggered after the opening <body> tag.
     213                 *
     214                 * @since Twenty Seventeen 2.2
     215                 */
     216                do_action( 'wp_body_open' );
     217        }
     218endif;
  • wp-content/themes/twentysixteen/inc/template-tags.php

     
    264264                }
    265265        }
    266266endif;
     267
     268if ( ! function_exists( 'wp_body_open' ) ) :
     269        /**
     270         * Fire the wp_body_open action.
     271         *
     272         * Added for backwards compatibility to support pre 5.2.0 WordPress versions.
     273         *
     274         * @since Twenty Sixteen 2.0
     275         */
     276        function wp_body_open() {
     277                /**
     278                 * Triggered after the opening <body> tag.
     279                 *
     280                 * @since Twenty Sixteen 2.0
     281                 */
     282                do_action( 'wp_body_open' );
     283        }
     284endif;
  • wp-content/themes/twentyten/functions.php

     
    716716}
    717717add_action( 'enqueue_block_editor_assets', 'twentyten_block_editor_styles' );
    718718
    719 
     719if ( ! function_exists( 'wp_body_open' ) ) :
     720        /**
     721         * Fire the wp_body_open action.
     722         *
     723         * Added for backwards compatibility to support pre 5.2.0 WordPress versions.
     724         *
     725         * @since Twenty Ten 2.9
     726         */
     727        function wp_body_open() {
     728                /**
     729                 * Triggered after the opening <body> tag.
     730                 *
     731                 * @since Twenty Ten 2.9
     732                 */
     733                do_action( 'wp_body_open' );
     734        }
     735endif;
  • wp-content/themes/twentythirteen/functions.php

     
    777777        return $args;
    778778}
    779779add_filter( 'widget_tag_cloud_args', 'twentythirteen_widget_tag_cloud_args' );
     780
     781if ( ! function_exists( 'wp_body_open' ) ) :
     782        /**
     783         * Fire the wp_body_open action.
     784         *
     785         * Added for backwards compatibility to support pre 5.2.0 WordPress versions.
     786         *
     787         * @since Twenty Thirteen 2.8
     788         */
     789        function wp_body_open() {
     790                /**
     791                 * Triggered after the opening <body> tag.
     792                 *
     793                 * @since Twenty Thirteen 2.8
     794                 */
     795                do_action( 'wp_body_open' );
     796        }
     797endif;
  • wp-content/themes/twentytwelve/functions.php

     
    665665}
    666666add_action( 'customize_preview_init', 'twentytwelve_customize_preview_js' );
    667667
    668 
    669668/**
    670669 * Modifies tag cloud widget arguments to display all tags in the same font size
    671670 * and use list format for better accessibility.
     
    684683        return $args;
    685684}
    686685add_filter( 'widget_tag_cloud_args', 'twentytwelve_widget_tag_cloud_args' );
     686
     687if ( ! function_exists( 'wp_body_open' ) ) :
     688        /**
     689         * Fire the wp_body_open action.
     690         *
     691         * Added for backwards compatibility to support pre 5.2.0 WordPress versions.
     692         *
     693         * @since Twenty Twelve 3.0
     694         */
     695        function wp_body_open() {
     696                /**
     697                 * Triggered after the opening <body> tag.
     698                 *
     699                 * @since Twenty Twelve 3.0
     700                 */
     701                do_action( 'wp_body_open' );
     702        }
     703endif;