Changeset 6086 for branches/1.5/bp-themes/bp-default/functions.php
- Timestamp:
- 06/13/2012 08:46:17 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.5/bp-themes/bp-default/functions.php
r5979 r6086 84 84 // This theme allows users to set a custom background 85 85 // Backward-compatibility with WP < 3.4 will be removed in a future release 86 if ( bp_get_major_wp_version() >= 3.4) {86 if ( 3.4 <= bp_get_major_wp_version() ) { 87 87 $custom_background_args = array( 88 88 'wp-head-callback' => 'bp_dtheme_custom_background_style' … … 108 108 // Add a way for the custom header to be styled in the admin panel that controls custom headers. 109 109 // Backward-compatibility with WP < 3.4 will be removed in a future release 110 if ( bp_get_major_wp_version() >= 3.4) {110 if ( 3.4 <= bp_get_major_wp_version() ) { 111 111 $custom_header_args = array( 112 112 'wp-head-callback' => 'bp_dtheme_header_style',
Note: See TracChangeset
for help on using the changeset viewer.