我相信你可能在谈论添加plugin_action_links
例如
Settings | Deactivate | Delete | Visit Site
如所有插件的插件管理页面所示。
我打算从我的一个插件中取一个例子,但是这里有一个通过WPMods上的来宾帖子从Pippin中获得的例子要简单得多HERE 如果你不认识Pippin,他是所有插件开发工作的追随者。
function our_plugin_action_links($links, $file) {
static $this_plugin;
if (!$this_plugin) {
$this_plugin = plugin_basename(__FILE__);
}
// check to make sure we are on the correct plugin
if ($file == $this_plugin) {
// the anchor tag and href to the URL we want. For a "Settings" link, this needs to be the url of your settings page
$settings_link = \'<a href="\' . get_bloginfo(\'wpurl\') . \'/wp-admin/admin.php?page=font-uploader.php">Settings</a>\';
// add the link to the list
array_unshift($links, $settings_link);
}
return $links;
}
add_filter(\'plugin_action_links\', \'our_plugin_action_links\', 10, 2);
不言而喻(请参阅内联注释以了解发生的情况)。如果插件需要,还可以添加多个链接。