bp_admin()
Setup BuddyPress Admin.
Description
Source
File: bp-core/bp-core-admin.php
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.