7

我想直接从 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 法典,似乎不可能。有人有建议吗?

4

1 回答 1

7

那是我的愚蠢。几分钟后我找到了答案。绝望是一种很好的动力!:)

诀窍是不要使用 wp_register_style() 和 wp_enqueue_style()

这是我所做的:

function myStyleSheet() {

  global $value;
  $num = $value/2;

  echo '
       <style type="text/css">
            .divbox { width: '.$num.'; }    
       </style>
    ';
}
add_action( 'wp_print_styles', 'myStyleSheet' );

不过,也许有更好的方法?

于 2013-01-09T02:52:13.990 回答