我使用sprintf函数如下:
sprintf( '
.site-footer {
border-top-color : %s;
}
', $fys_color_base_1 );
我想要实现的目标是:
sprintf( '
.site-footer {
border-top-color : %s;
}
.site-wrapper {
background-color : %s;
}
', $fys_color_base_1 );
但这不起作用 - 我该怎么做?
谢谢!