这是参考another answer 这里是wordpress。stackexchange。回答者使用文件名作为挂钩,将脚本和样式排入特定页面。
add_action( \'admin_print_scripts-post-new.php\', \'portfolio_admin_script\', 11 );
add_action( \'admin_print_scripts-post.php\', \'portfolio_admin_script\', 11 );
最合适的回答,由SO网友:Stephen Harris 整理而成
简单的回答是“是”。
摘自this article 这些“屏幕特定挂钩”的后缀如下所示:
对于通过添加的自定义管理页面add_menu_page()
- 包括设置页面-(和相关功能)它是屏幕ID(返回的值add_menu_page()
)对于列出任何帖子类型帖子的管理页面,它是edit.php
在任何帖子类型的“添加新”页面上post-new.php
在任何帖子类型的编辑页面上post.php
分类页面是edit-tags.php
您可能会发现this plug-in 有用,由@Kaiser根据上面链接的文章开发。