如果您首先将样式表排队,则应该能够在之后使用wp\\u add\\u inline\\u样式。
function custom_style() {
wp_enqueue_style(\'your_css\', plugin_dir_url( __FILE__ ) . \'style/your_css.css\' );
$bg_color = get_option(\'custom_color\');
$custom_css = " body { background-color: {$bg_color}; }";
wp_add_inline_style( \'your_css\', $custom_css );
}
这是没有测试(只是写在脑海中),我从来没有在管理部分使用过它。只需使用admin\\u enqueue\\u脚本进行测试。