Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: legacy plugin workarounds for 1.0

@_ck_

Participant

Some plugins attach to the “Manage” admin menu, which was skipped over in 1.0

This will emulate the slot so the plugins become visible again.

(do not click “Manage” directly or you’ll get a 404, unfortunately it has to be that way because of how 1.0 was changed)

<?php
/*
Plugin Name: Legacy Plugin Fixes
*/

add_action('bb_admin_menu_generator', 'admin_manage_menu', 1);
function admin_manage_menu() {global $bb_menu; $bb_menu[165] = array( __( 'Manage'), 'moderate', 'content.php', 'bb-menu-manage' );}

?>

Skip to toolbar