Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
01/29/2024 06:31:34 PM (2 years ago)
Author:
imath
Message:

Raise WordPress required version to 6.1

  • Do required WP version bumps.
  • Remove WP function/version checks when these were about WP version < 6.1.
  • Init the 14.0.0 deprecated functions file.
  • Update the GH PHP Unit Action and remove the 6.0 wp-phpunit/wp-phpunit composer package downgrade that was needed when testing WP version < 6.1.

Fixes #9051
Closes https://github.com/buddypress/buddypress/pull/226

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-templates/bp-nouveau/includes/functions.php

    r13652 r13718  
    16631663    }
    16641664
    1665     // `wp_get_global_settings()` has been introduced in WordPress 5.9
    1666     if ( function_exists( 'wp_get_global_settings' ) ) {
     1665    // Use Block Theme global settings for Block Themes.
     1666    if ( wp_is_block_theme() ) {
    16671667        $theme_layouts = wp_get_global_settings( array( 'layout' ) );
    16681668
Note: See TracChangeset for help on using the changeset viewer.