如何在PHP CSS WordPress中更改动态背景图像

时间:2018-12-11 08:34:01

标签: php css wordpress

我有问题..

在管理员我有

array(
  'id' => 'home_dynamic',
  'type' => 'textarea',
  'title' => __('Dynamic Text', 'lex') ,
  desc' => __('<br />Input each text in the new line.', 'lex'),
),

style.css.php中我有此代码

.home-header {
    background: <?php echo $dark_color; ?> url(' <?php $dynamic2 = get_option( "home_dynamic2" ); echo str_replace( "\n", "[dyn]", $dynamic2 ); ?>') no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

如何修改此代码才能正常工作?

0 个答案:

没有答案