bbp_admin_tools_repair_help()
Contextual help for Repair Forums tools page
Description Description
Source Source
File: includes/admin/tools/help.php
function bbp_admin_tools_repair_help() {
$current_screen = get_current_screen();
// Bail if current screen could not be found
if ( empty( $current_screen ) ) {
return;
}
// Repair Forums
$current_screen->add_help_tab( array(
'id' => 'repair_forums',
'title' => __( 'Repair Forums', 'bbpress' ),
'content' => '<p>' . __( 'There is more detailed information available on the bbPress and BuddyPress codex for the following:', 'bbpress' ) . '</p>' .
'<p>' .
'<ul>' .
'<li>' . __( 'BuddyPress Group Forums: <a href="https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/">Installing Group and Sitewide Forums</a> and <a href="https://codex.buddypress.org/getting-started/guides/migrating-from-old-forums-to-bbpress-2/">Migrating from old forums to bbPress 2.2+</a>.', 'bbpress' ) . '</li>' .
'<li>' . __( 'bbPress roles: <a href="https://codex.bbpress.org/bbpress-user-roles-and-capabilities/" target="_blank">bbPress User Roles and Capabilities</a>', 'bbpress' ) . '</li>' .
'</ul>' .
'</p>' .
'<p>' . __( 'Also see <a href="https://codex.bbpress.org/repair-forums/">bbPress: Repair Forums</a>.', 'bbpress' ) . '</p>'
) );
// Help Sidebar
$current_screen->set_help_sidebar(
'<p><strong>' . __( 'For more information:', 'bbpress' ) . '</strong></p>' .
'<p>' . __( '<a href="https://codex.bbpress.org" target="_blank">bbPress Documentation</a>', 'bbpress' ) . '</p>' .
'<p>' . __( '<a href="https://bbpress.org/forums/" target="_blank">bbPress Support Forums</a>', 'bbpress' ) . '</p>'
);
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.6.0 | Introduced. |