Ticket #46679: 46679-back-comp.2.patch
File 46679-back-comp.2.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 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 } 901 endif; -
wp-content/themes/twentyfifteen/inc/template-tags.php
267 267 } 268 268 } 269 269 endif; 270 271 if ( ! 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 } 287 endif; -
wp-content/themes/twentyfourteen/inc/template-tags.php
232 232 } 233 233 add_filter( 'excerpt_more', 'twentyfourteen_excerpt_more' ); 234 234 endif; 235 236 if ( ! 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 } 252 endif; -
wp-content/themes/twentynineteen/inc/template-tags.php
238 238 ); 239 239 } 240 240 endif; 241 242 if ( ! 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 } 258 endif; -
wp-content/themes/twentyseventeen/inc/template-tags.php
198 198 } 199 199 add_action( 'edit_category', 'twentyseventeen_category_transient_flusher' ); 200 200 add_action( 'save_post', 'twentyseventeen_category_transient_flusher' ); 201 202 if ( ! 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 } 218 endif; -
wp-content/themes/twentysixteen/inc/template-tags.php
264 264 } 265 265 } 266 266 endif; 267 268 if ( ! 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 } 284 endif; -
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 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 } 735 endif; -
wp-content/themes/twentythirteen/functions.php
777 777 return $args; 778 778 } 779 779 add_filter( 'widget_tag_cloud_args', 'twentythirteen_widget_tag_cloud_args' ); 780 781 if ( ! 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 } 797 endif; -
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 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 } 703 endif;