Changeset 7960 for trunk/bp-core/bp-core-template.php
- Timestamp:
- 02/21/2014 11:08:04 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/bp-core-template.php
r7926 r7960 1872 1872 } 1873 1873 1874 /** 1875 * Is this a user's profile settings? 1876 * 1877 * Eg http://example.com/members/joe/settings/profile/. 1878 * 1879 * @since BuddyPress (2.0.0) 1880 * 1881 * @return bool True if the current page is a user's Profile Settings page. 1882 */ 1883 function bp_is_user_settings_profile() { 1884 if ( bp_is_user_settings() && bp_is_current_action( 'profile' ) ) 1885 return true; 1886 1887 return false; 1888 } 1889 1874 1890 /** Groups ********************************************************************/ 1875 1891
Note: See TracChangeset
for help on using the changeset viewer.