bp_admin()
Setup BuddyPress Admin.
Description
Source
File: bp-core/bp-core-admin.php
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | function bp_admin() { buddypress()->admin = new BP_Admin(); return ; // These are strings we may use to describe maintenance/security releases, where we aim for no new strings. _n_noop( 'Maintenance Release' , 'Maintenance Releases' , 'buddyboss' ); _n_noop( 'Security Release' , 'Security Releases' , 'buddyboss' ); _n_noop( 'Maintenance and Security Release' , 'Maintenance and Security Releases' , 'buddyboss' ); /* translators: 1: BuddyPress version number. */ _n_noop( '<strong>Version %1$s</strong> addressed a security issue.' , '<strong>Version %1$s</strong> addressed some security issues.' , 'buddyboss' ); /* translators: 1: BuddyPress version number, 2: plural number of bugs. */ _n_noop( '<strong>Version %1$s</strong> addressed %2$s bug.' , '<strong>Version %1$s</strong> addressed %2$s bugs.' , 'buddyboss' ); /* translators: 1: BuddyPress version number, 2: plural number of bugs. Singular security issue. */ _n_noop( '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.' , '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.' , 'buddyboss' ); /* translators: 1: BuddyPress version number, 2: plural number of bugs. More than one security issue. */ _n_noop( '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.' , '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.' , 'buddyboss' ); __( 'For more information, see <a href="%s">the release notes</a>.' , 'buddyboss' ); } |
Changelog
Version | Description |
---|---|
BuddyPress 1.6.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.