您的小部件将根据您指定的类名获取ID。然后可以基于这些值编写CSS选择器。假设您将小部件类的前缀设置为“foo\\u0”,然后您可以使用以下选项选择它们:
div[id*="foo_"] {
background-color: red;
}
要将其添加到管理页面,请在函数中添加类似的内容。php:
add_action(\'admin_head\', \'custom_widget_css\');
function custom_widget_css() {
echo \'<style>
div[id*="foo_"] {
background-color: red;
}
</style>\';
}