Changeset 45256 for trunk/src/wp-content/themes/twentytwelve/functions.php
- Timestamp:
- 04/23/2019 01:03:14 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwelve/functions.php
r45218 r45256 668 668 add_action( 'customize_preview_init', 'twentytwelve_customize_preview_js' ); 669 669 670 671 670 /** 672 671 * Modifies tag cloud widget arguments to display all tags in the same font size … … 687 686 } 688 687 add_filter( 'widget_tag_cloud_args', 'twentytwelve_widget_tag_cloud_args' ); 688 689 if ( ! function_exists( 'wp_body_open' ) ) : 690 /** 691 * Fire the wp_body_open action. 692 * 693 * Added for backwards compatibility to support pre 5.2.0 WordPress versions. 694 * 695 * @since Twenty Twelve 3.0 696 */ 697 function wp_body_open() { 698 /** 699 * Triggered after the opening <body> tag. 700 * 701 * @since Twenty Twelve 3.0 702 */ 703 do_action( 'wp_body_open' ); 704 } 705 endif;
Note: See TracChangeset
for help on using the changeset viewer.