使用特定钩子的函数,例如-admin_menu
我是 WordPress 开发插件的新手。 我在法典上阅读了一些用于开发管理菜单的代码。 基本上
- 我使用了 admin_menu 挂钩。
- 然后我使用 add_menu_page 添加了顶级菜单。
- 然后使用 add_submenu_page 将子菜单添加到顶级菜单。
- 因此,我们正在做的是与 admin_menu 挂钩函数交互,以在加载管理面板之前添加功能。
- 我从 Codex 获得了函数 add_menu_page 和 add_submenu_page ,但我想知道可以使用哪些其他函数为这个特定的钩子添加更多功能。
- 我正在寻找可以与任何特定挂钩一起使用来创建插件的函数的参考。
- 我发现这是我应该使用的方法,是否有任何人都可以建议的其他方法。
I am new to developing a plugin for Wordpress .
I read some code on codex for developing Administration menus .
Basically
- I used a admin_menu hook.
- Then I added a top level menu by using add_menu_page.
- Then a submenu to the top level menu by using add_submenu_page.
- So what we are doing is interacting with admin_menu hook function to add functionality before the admin panel is loaded .
- I got the function add_menu_page and add_submenu_page from Codex but I want to know which other functions I can use for adding more functionality to this particular hook.
- I am searching for reference to functions that i can use with any particular hooks to create a plugin.
- I find this the approach that I should use , is there and other approach that anyone can advise .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里有两个很棒的资源:
http://hitchhackerguide.com/function-filter-action-index/
http://codex.wordpress.org/Plugin_API
Here are two great resources:
http://hitchhackerguide.com/function-filter-action-index/
http://codex.wordpress.org/Plugin_API