在我的模板上,我有许多字段,用户可以在其中选择并从几个选项中进行选择,以用作其网站的背景。
有两个单独的背景,从 和 的 ID 调用background-one
,background-two
存储在单独的数组中。
输出第一个背景:
<?php $background = of_get_option('background-one'); {
if ($background['color'] && $background['image']) {
echo 'body {
background: ' . $background['color'] . ' url(' . $background['image']. ') ' .$background['repeat']. ' ' .$background['position']. ' ' .$background['attachment']. ';';
echo '
}';
}
else if ($background['color']) {
echo 'body {
background: ' . $background['color']. ';';
echo '
}';
}
else if ($background['image']) {
echo 'body {
background: ' . 'url(' . $background['image']. ') ' .$background['repeat']. ' ' .$background['position']. ' ' .$background['attachment']. ';';
echo '
}';
};
}
?>
但是,由于我对 PHP 非常陌生,我的问题是如何输出第二个背景?