Changeset 11106
- Timestamp:
- 09/16/2016 06:28:43 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/bp-core/bp-core-functions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-functions.php
r11097 r11106 704 704 */ 705 705 function bp_core_get_directory_page_default_titles() { 706 returnarray(706 $page_default_titles = array( 707 707 'activity' => _x( 'Activity', 'Page title for the Activity directory.', 'buddypress' ), 708 708 'groups' => _x( 'Groups', 'Page title for the Groups directory.', 'buddypress' ), … … 712 712 'register' => _x( 'Register', 'Page title for the user registration screen.', 'buddypress' ), 713 713 ); 714 715 /** 716 * Filters the default page titles array 717 * 718 * @since 2.7.0 719 * 720 * @param array $page_default_titles the array of default WP (post_title) titles 721 */ 722 return apply_filters('bp_core_get_directory_page_default_titles', $page_default_titles); 714 723 } 715 724
Note: See TracChangeset
for help on using the changeset viewer.