WordPress:以编程方式隐藏帖子窗口中的小部件
我正在绞尽脑汁寻找某种方法以编程方式隐藏“Post Window”中的一些小部件。
我在 WordPress.org 上找到了一篇文章,可以很好地隐藏仪表板窗口中的一些小部件(参考:http://codex.wordpress.org/Dashboard_Widgets_API#Advanced:_Removing_Dashboard_Widgets)。但不幸的是我没有找到任何方法来隐藏帖子窗口中的一些小部件。
我想删除小部件,例如:标签、自定义字段和帖子缩略图。
有人可以帮助我吗?
谢谢你! 泰姬·辛格
I'm burning my brain to find someway to hide some widgets from "Post Window" programmatically.
I found an article on WordPress.org that worked fine to hide some widgets from the Dashboard Window (ref.: http://codex.wordpress.org/Dashboard_Widgets_API#Advanced:_Removing_Dashboard_Widgets). But unfortunately I didn't find any way to hide some widgets from Post Window.
I'd like to remove widgets like: Tags, Custom Fields and Post Thumbnail.
Can someone help me?
Thank you!
Taj Singh
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个插件听起来像是你想要的:WP-CMS Post Control:
我相信调用的相关函数是
remove_action()
,尽管我还没有深入研究 WordPress 的这个领域。This plugin sounds like it does what you want: WP-CMS Post Control:
I believe the relevant function called is
remove_action()
, though I have not dived deep into this area of WordPress yet.使用remove_meta_box(),请参阅阅读函数文档直到最后。
Use remove_meta_box(), see read function docs till the end.