Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
05/07/2023 11:36:50 AM (23 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-groups/classes/class-bp-groups-component.php

    r13468 r13471  
    12601260        );
    12611261    }
    1262 
    1263     /**
    1264      * Add the Groups directory states.
    1265      *
    1266      * @since 10.0.0
    1267      *
    1268      * @param array   $states Optional. See BP_Component::admin_directory_states() for description.
    1269      * @param WP_Post $post   Optional. See BP_Component::admin_directory_states() for description.
    1270      * @return array          See BP_Component::admin_directory_states() for description.
    1271      */
    1272     public function admin_directory_states( $states = array(), $post = null ) {
    1273         $bp = buddypress();
    1274 
    1275         if ( isset( $bp->pages->groups->id ) && (int) $bp->pages->groups->id === (int) $post->ID ) {
    1276             $states['page_for_groups_directory'] = _x( 'BP Groups Page', 'page label', 'buddypress' );
    1277         }
    1278 
    1279         return parent::admin_directory_states( $states, $post );
    1280     }
    12811262}
Note: See TracChangeset for help on using the changeset viewer.