我想直接从wordpress插件中排队一串CSS.我不想从外部文件加载它,我不想辩论为什么这是写或错误的事情,我只是想知道它是否可能.
换句话说,我知道我可以这样做:
wp_register_style('myStyleSheet','my-stylesheet.PHP'); wp_enqueue_style( 'myStyleSheet');
但我不想.
我想做的是像这样(伪代码):
$number = get_option('some_width')/2; $css = " .divBox { width: $number; } "; wp_register_style('myStyleSheet',$css); wp_enqueue_style( 'myStyleSheet');
我读了wp_register_style()的wp codex,但似乎不可能.有人有建议吗?
解决方法
那对我来说很傻.几分钟后我找到了答案.绝望是一个很好的动力! 原文链接:/css/214967.html