Ticket #46679: 46679-back-comp.patch
File 46679-back-comp.patch, 6.8 KB (added by , 5 years ago) |
---|
-
wp-content/themes/twentyeleven/functions.php
881 881 return $args; 882 882 } 883 883 add_filter( 'widget_tag_cloud_args', 'twentyeleven_widget_tag_cloud_args' ); 884 885 if ( ! function_exists( 'wp_body_open' ) ) { 886 /** 887 * Fire the wp_body_open action. 888 * 889 * Added for backwards compatibility to support WordPress versions prior to 5.2.0. 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 } 901 } -
wp-content/themes/twentyfifteen/inc/back-compat.php
65 65 } 66 66 } 67 67 add_action( 'template_redirect', 'twentyfifteen_preview' ); 68 69 if ( ! function_exists( 'wp_body_open' ) ) { 70 /** 71 * Fire the wp_body_open action. 72 * 73 * Added for backwards compatibility to support WordPress versions prior to 5.2.0. 74 * 75 * @since Twenty Fifteen 2.5 76 */ 77 function wp_body_open() { 78 /** 79 * Triggered after the opening <body> tag. 80 * 81 * @since Twenty Fifteen 2.5 82 */ 83 do_action( 'wp_body_open' ); 84 } 85 } -
wp-content/themes/twentyfourteen/inc/back-compat.php
65 65 } 66 66 } 67 67 add_action( 'template_redirect', 'twentyfourteen_preview' ); 68 69 if ( ! function_exists( 'wp_body_open' ) ) { 70 /** 71 * Fire the wp_body_open action. 72 * 73 * Added for backwards compatibility to support WordPress versions prior to 5.2.0. 74 * 75 * @since Twenty Fourteen 2.7 76 */ 77 function wp_body_open() { 78 /** 79 * Triggered after the opening <body> tag. 80 * 81 * @since Twenty Fourteen 2.7 82 */ 83 do_action( 'wp_body_open' ); 84 } 85 } -
wp-content/themes/twentynineteen/inc/back-compat.php
74 74 } 75 75 } 76 76 add_action( 'template_redirect', 'twentynineteen_preview' ); 77 78 if ( ! function_exists( 'wp_body_open' ) ) { 79 /** 80 * Fire the wp_body_open action. 81 * 82 * Added for backwards compatibility to support WordPress versions prior to 5.2.0. 83 * 84 * @since Twenty Nineteen 1.4 85 */ 86 function wp_body_open() { 87 /** 88 * Triggered after the opening <body> tag. 89 * 90 * @since Twenty Nineteen 1.4 91 */ 92 do_action( 'wp_body_open' ); 93 } 94 } -
wp-content/themes/twentyseventeen/inc/back-compat.php
71 71 } 72 72 } 73 73 add_action( 'template_redirect', 'twentyseventeen_preview' ); 74 75 if ( ! function_exists( 'wp_body_open' ) ) { 76 /** 77 * Fire the wp_body_open action. 78 * 79 * Added for backwards compatibility to support WordPress versions prior to 5.2.0. 80 * 81 * @since Twenty Seventeen 2.2 82 */ 83 function wp_body_open() { 84 /** 85 * Triggered after the opening <body> tag. 86 * 87 * @since Twenty Seventeen 2.2 88 */ 89 do_action( 'wp_body_open' ); 90 } 91 } -
wp-content/themes/twentysixteen/inc/back-compat.php
73 73 } 74 74 } 75 75 add_action( 'template_redirect', 'twentysixteen_preview' ); 76 77 if ( ! function_exists( 'wp_body_open' ) ) { 78 /** 79 * Fire the wp_body_open action. 80 * 81 * Added for backwards compatibility to support WordPress versions prior to 5.2.0. 82 * 83 * @since Twenty Sixteen 2.0 84 */ 85 function wp_body_open() { 86 /** 87 * Triggered after the opening <body> tag. 88 * 89 * @since Twenty Sixteen 2.0 90 */ 91 do_action( 'wp_body_open' ); 92 } 93 } -
wp-content/themes/twentyten/functions.php
716 716 } 717 717 add_action( 'enqueue_block_editor_assets', 'twentyten_block_editor_styles' ); 718 718 719 719 if ( ! function_exists( 'wp_body_open' ) ) { 720 /** 721 * Fire the wp_body_open action. 722 * 723 * Added for backwards compatibility to support WordPress versions prior to 5.2.0. 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 } 735 } -
wp-content/themes/twentythirteen/inc/back-compat.php
65 65 } 66 66 } 67 67 add_action( 'template_redirect', 'twentythirteen_preview' ); 68 69 if ( ! function_exists( 'wp_body_open' ) ) { 70 /** 71 * Fire the wp_body_open action. 72 * 73 * Added for backwards compatibility to support WordPress versions prior to 5.2.0. 74 * 75 * @since Twenty Thirteen 2.8 76 */ 77 function wp_body_open() { 78 /** 79 * Triggered after the opening <body> tag. 80 * 81 * @since Twenty Thirteen 2.8 82 */ 83 do_action( 'wp_body_open' ); 84 } 85 } -
wp-content/themes/twentytwelve/functions.php
665 665 } 666 666 add_action( 'customize_preview_init', 'twentytwelve_customize_preview_js' ); 667 667 668 669 668 /** 670 669 * Modifies tag cloud widget arguments to display all tags in the same font size 671 670 * and use list format for better accessibility. … … 684 683 return $args; 685 684 } 686 685 add_filter( 'widget_tag_cloud_args', 'twentytwelve_widget_tag_cloud_args' ); 686 687 if ( ! function_exists( 'wp_body_open' ) ) { 688 /** 689 * Fire the wp_body_open action. 690 * 691 * Added for backwards compatibility to support WordPress versions prior to 5.2.0. 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 } 703 }