bp_core_admin_available_tools_intro()
Render an introduction of BuddyPress tools on Available Tools page.
Description
Source
File: bp-core/admin/bp-core-admin-tools.php
function bp_core_admin_available_tools_intro() {
$query_arg = array(
'page' => 'bp-tools'
);
$page = bp_core_do_network_admin() ? 'admin.php' : 'admin.php';
$url = add_query_arg( $query_arg, bp_get_admin_url( $page ) );
?>
<div class="card tool-box">
<h2><?php esc_html_e( 'BuddyBoss Tools', 'buddyboss' ) ?></h2>
<p>
<?php esc_html_e( 'BuddyBoss keeps track of various relationships between users, groups, and activity items. Occasionally these relationships become out of sync, most often after an import, update, or migration.', 'buddyboss' ); ?>
<?php printf( esc_html__( 'Use the %s to repair these relationships.', 'buddyboss' ), '<a href="' . esc_url( $url ) . '">' . esc_html__( 'BuddyBoss Tools', 'buddyboss' ) . '</a>' ); ?>
</p>
</div>
<?php
}
Changelog
| Version | Description |
|---|---|
| BuddyPress 2.0.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.