If you want to manually highlight WordPress admin menu item? Use following code in your theme’s functions.php file OR in site specific plugin.
1 2 3 4 5 6 7 8 9 | function my_plugin_select_submenu($file) { global $plugin_page; if ('__my-current-submenu-slug__' == $plugin_page) { $plugin_page = '__my-submenu-slug-to-select__'; } return $file; } add_filter('parent_file', 'my_plugin_select_submenu'); |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.