我正在尝试将以下挂钩添加到我的函数中。php文件。CSS样式在我查看源代码时显示出来,但它也显示随机背景图像生成器的php代码。我如何让这一行中的php在钩子中工作?
谢谢
add_action(\'wp_head\',\'hook_css\');
function hook_css()
{
$output="
<style>
body {
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
background: url(\'../images/backgrounds/bg<?php echo rand(1,4)?>.jpg\') no-repeat top center;
}
</style>";
echo $output;
}