Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
04/05/2018 02:43:31 PM (7 years ago)
Author:
djpaul
Message:

Remove further compatibilty checks for unsupported versions of WordPress.

BP 3.0.0 will require WP 4.5+, which lets us assume every site will have oEmbed support.

See #7618 and https://codex.buddypress.org/getting-started/wordpress-version-compatibility/

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-activity/bp-activity-embeds.php

    r11956 r11957  
    2020 */
    2121function bp_activity_setup_oembed() {
    22     if ( version_compare( $GLOBALS['wp_version'], '4.5', '>=' ) && bp_is_active( 'activity', 'embeds' ) ) {
    23         buddypress()->activity->oembed = new BP_Activity_oEmbed_Extension;
    24     }
     22    buddypress()->activity->oembed = new BP_Activity_oEmbed_Extension;
    2523}
    2624add_action( 'bp_loaded', 'bp_activity_setup_oembed' );
Note: See TracChangeset for help on using the changeset viewer.