No admin menu item created in WP 3.1.x
-
There seems to be a problem with integrating the settings page for this plugin within the admin menu — the admin link just does not appear (i.e. there is no entry within the “Settings” menu or any other menu for that matter).
After going through the code I believe to have found the problem:
To create the admin menu link the plugin uses the following code (config.php, lines 147 through 150)://Add to plugins menu if ( current_user_can('manage_options') ){ add_filter('plugin_action_links',array(&$this,'plugin_action_links'),10,2); }
According to my research (e.g. https://adambrown.info/p/wp_hooks/hook/plugin_action_links) the function used here (plugin_action_links) is deprecated since WP 3.1, and the function cannot be found in the WP Codex.
I would try to resolve the problem myself, but I am not very experienced with plugin coding for WP. Maybe Jacob Dunn can try and update the code himself to make this plugin compatible with the current version of WP.
BTW: I have not tested the plugin with an earlier version of WP (as in WP 3.0 or below), so I have no information as to whether this issue appears in those earlier versions of WP.
- The topic ‘No admin menu item created in WP 3.1.x’ is closed to new replies.