Adding Admin Menu Separators In WordPress
Answer :
You should hook in admin_menu:
add_action('admin_menu','admin_menu_separator'); And use something lower than 220. The biggest offset I got in my system is 99.
Check this very fine class to deal with Admin Menus.
It appeared in this WPSE Question: Add a Separator to the Admin Menu?
Comments
Post a Comment