Wordpress:如何以编程方式返回需要更新的插件数量
当其中一些需要更新时,有没有办法返回“插件”旁边的小红色气泡中出现的数字?
我正在使用 WordPress 3.0.5
Is there a way to return the number that appears in the little red bubble next to "plugins" when some of them need an update ?
I'm using Wordpress 3.0.5
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
wp-admin/includes/update.php
第 155 行(在 WP 3.0.5 中)有一个名为get_plugin_updates()
的例程。它返回一组具有可用更新的插件。count(get_plugin_update())
应该为你做。There's a routine in
wp-admin/includes/update.php
line 155 (in WP 3.0.5) calledget_plugin_updates()
. It returns an array of plugins with update's available.count(get_plugin_update())
should do it for you.