admin管理员组

文章数量:1393072

I am currently creating the administration window for my wordpress plugin, my objective is to create this screen using the same CSS that are already used within the different tabs of the "wordpress administrator". 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" (something like Bootstrap has in its documentation link)

At the moment I was able to perform some experiments using the information in this link as well as analyzing with my browser the classes that have applied some parts of the HTML code

If there is not what I consult in my first question, 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?

I am currently creating the administration window for my wordpress plugin, my objective is to create this screen using the same CSS that are already used within the different tabs of the "wordpress administrator". 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" (something like Bootstrap has in its documentation link)

At the moment I was able to perform some experiments using the information in this link as well as analyzing with my browser the classes that have applied some parts of the HTML code

If there is not what I consult in my first question, 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?

Share Improve this question asked Mar 3, 2020 at 15:36 Diego AaronDiego Aaron 1134 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

Frank Bültge has a plugin which displays all (most?) of the WP admin styles, which is kept fairly up-to-date: https://github/bueltge/WordPress-Admin-Style

Helen Hou-Sandí also has a plugin style guide: https://github/helen/wp-style-guide

There is also this: https://dotorgstyleguide.wordpress/

本文标签: pluginsHow to use the CSS of the Wordpress core in the development of my administration page