如何在我的管理页面开发中使用WordPress核心的css?

时间:2020-03-03 作者:Diego Aaron

我目前正在为我的wordpress插件创建管理窗口,我的目标是使用“wordpress管理员”的不同选项卡中已经使用的相同CSS创建此屏幕。My question is if there is any link (or list of links) where all the CSS classes used by the Wordpress core are defined to render the "Wordpress administrator" (类似于Bootstrap的文档link)

目前,我能够使用本文中的信息进行一些实验link 以及使用我的浏览器分析应用了HTML代码某些部分的类

enter image description here

如果在我的第一个问题中没有我所咨询的,the only thing I would have left to use these CSS styles would be to analyze the part that interests me with the browser and see the classes they have applied to then put them in my code?

1 个回复
最合适的回答,由SO网友:butlerblog 整理而成

Frank Bültge有一个插件,可以显示所有(大多数?)WP管理风格中,保持相当最新的:https://github.com/bueltge/WordPress-Admin-Style

Helen Hou Sandí还有一个插件风格指南:https://github.com/helen/wp-style-guide

还有一点:https://dotorgstyleguide.wordpress.com/

相关推荐

Get page slug in Admin menu

我正在尝试将设置菜单添加到插件中,但在该菜单中,我无法获得“页面”slug。我基本上是这样做的:add_action( \'admin_menu\', \'MyPlugin_AddAdminMenus\' ); function MyPlugin_AddAdminMenus() { add_menu_page(\'General settings\', \'MyPlugin\', \'manage_options\', \'my-plugin-General\', \'re