Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
05/07/2023 11:36:50 AM (19 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-core/bp-core-catchuri.php

    r13468 r13471  
    130130        $wp_query->is_singular = true;
    131131        $wp_query->is_404      = false;
     132
     133        // Check if a BuddyPress component's direcory is set as homepage.
     134        $wp_query->is_home = bp_is_directory_homepage( bp_current_component() );
    132135
    133136        /**
     
    172175            $wp_query->is_singular = true;
    173176            $wp_query->is_404      = false;
     177
     178            // Check if a BuddyPress component's direcory is set as homepage.
     179            $wp_query->is_home = bp_is_directory_homepage( bp_current_component() );
    174180        }
    175181
Note: See TracChangeset for help on using the changeset viewer.