bbp_tools_modify_menu_highlight()

This tells WP to highlight the Tools > Forums menu item, regardless of which actual bbPress Tools screen we are on.


Description Description

The conditional prevents the override when the user is viewing settings or any third-party plugins.


Source Source

File: includes/admin/common.php

function bbp_tools_modify_menu_highlight() {
	global $plugin_page, $submenu_file;

	// This tweaks the Tools subnav menu to only show one bbPress menu item
	if ( ! in_array( $plugin_page, array( 'bbp-settings' ), true ) ) {
		$submenu_file = 'bbp-repair';
	}
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.1.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.