Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
05/07/2023 11:36:50 AM (17 months ago)
Author:
imath
Message:

BP Rewrites merge process, final touches

This commit is closing the main ticket about migrating our Legacy URL parser to using the WP Rewrite API. Please open next possible issues in new tickets.

The final touches:

  • Make sure BP Activity Embeds are fully supported when using the BP Rewrites API.
  • Make sure BuddyPress directories are fetched into the Site Editor's Navigation block.
  • Deprecate bp_admin_display_directory_states() and move the BP Page directory states feature into the BP Classic backcompat plugin.
  • Remove the Page settings Admin help tab & move it into BP Classic
  • Introduce the bp_core_include_directory_on_front() in order to maintain the possibility to use a BP Directory page as the site's home page.

Props r-a-y, johnjamesjacoby, boonebgorges

Closes https://github.com/buddypress/buddypress/pull/95
Fixes #4954

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-activity/classes/class-bp-activity-component.php

    r13464 r13471  
    578578        parent::blocks_init( $blocks );
    579579    }
    580 
    581     /**
    582      * Add the Activity directory state.
    583      *
    584      * @since 10.0.0
    585      *
    586      * @param array   $states Optional. See BP_Component::admin_directory_states() for description.
    587      * @param WP_Post $post   Optional. See BP_Component::admin_directory_states() for description.
    588      * @return array          See BP_Component::admin_directory_states() for description.
    589      */
    590     public function admin_directory_states( $states = array(), $post = null ) {
    591         $bp = buddypress();
    592 
    593         if ( isset( $bp->pages->activity->id ) && (int) $bp->pages->activity->id === (int) $post->ID ) {
    594             $states['page_for_activity_directory'] = _x( 'BP Activity Page', 'page label', 'buddypress' );
    595         }
    596 
    597         return parent::admin_directory_states( $states, $post );
    598     }
    599580}
Note: See TracChangeset for help on using the changeset viewer.