bp_migrate_directory_page_titles()
Update WP pages so that their post_title matches the legacy component directory title.
Description
As of 2.7.0, component directory titles come from the post_title
attribute of the corresponding WP post object, instead of being hardcoded. To ensure that directory titles don’t change for existing installations, we update these WP posts with the formerly hardcoded titles.
Source
File: bp-core/bp-core-update.php
775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 | function bp_migrate_directory_page_titles() { $bp_pages = bp_core_get_directory_page_ids( 'all' ); $default_titles = bp_core_get_directory_page_default_titles(); $legacy_titles = array ( 'activity' => __( 'Site-Wide Activity' , 'buddyboss' ), 'blogs' => __( 'Sites' , 'buddyboss' ), 'groups' => __( 'Groups' , 'buddyboss' ), 'members' => __( 'Members' , 'buddyboss' ), ); foreach ( $bp_pages as $component => $page_id ) { if ( ! isset( $legacy_titles [ $component ] ) ) { continue ; } $page = get_post( $page_id ); if ( ! $page ) { continue ; } // If the admin has changed the default title, don't touch it. if ( isset( $default_titles [ $component ] ) && $default_titles [ $component ] !== $page ->post_title ) { continue ; } // If the saved page title is the same as the legacy title, there's nothing to do. if ( $legacy_titles [ $component ] == $page ->post_title ) { continue ; } // Update the page with the legacy title. wp_update_post( array ( 'ID' => $page_id , 'post_title' => $legacy_titles [ $component ], ) ); } } |
Changelog
Version | Description |
---|---|
BuddyPress 2.7.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.