bp_core_admin_available_tools_page()
Render the Available Tools page.
Description Description
We register this page on Network Admin as a top-level home for our BuddyPress tools. This displays the default content.
Source Source
File: bp-core/admin/bp-core-admin-tools.php
function bp_core_admin_available_tools_page() {
?>
<div class="wrap">
<h1><?php esc_attr_e( 'Tools', 'buddypress' ) ?></h1>
<?php
/**
* Fires inside the markup used to display the Available Tools page.
*
* @since 2.0.0
*/
do_action( 'bp_network_tool_box' ); ?>
</div>
<?php
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.0.0 | Introduced. |