從編碼ub3r的n00b兩個問題...PHP + CSS:輸出選項框架內容
首先,我使用由德文價格的選項框架主題,只是想知道我將如何輸出我的header.php
文件的<head>
部分的背景屬性,從主題選項頁面只有當用戶上傳了圖像或爲此選擇了顏色?
我options.php
:
$options[] = array(
'name' => __('Background', 'options_framework_theme'),
'desc' => __('Add a background.', 'options_framework_theme'),
'id' => 'background-one',
'std' => $background_defaults,
'type' => 'background');
我Theme Options
頁:
我header.php
:
<style type="text/css">
<?php $background = of_get_option('background-one');
echo 'body {';
if ($background['color']) {
echo '
background: ' .$background['color']. ';';
}
if ($background['image']) {
echo '
background: url('.$background['image']. ') ';
echo ''.$background['repeat']. ' ';
echo ''.$background['position']. ' ';
echo ''.$background['attachment']. ';';
}
echo '
}';
?>
</style>
其中一期工程在我的網站的前端完全正常, displayi納克的CSS爲:
body {
background: #8224e3;
background: url(images/bg03.gif) repeat top left fixed;
}
但是如果用戶沒有選擇一個顏色或圖片作爲背景通過主題選項頁面的源代碼將輸出:
body {
}
會如何如果用戶沒有選擇背景,我可以刪除上面的CSS嗎?
從我收集到的信息中,需要創建一個if
聲明,但我不知道如何正確編寫它,因爲我對PHP相當陌生。
其次,我將如何能夠在框架中設置默認的背景圖像?
我options.php
:
// Background Defaults
$background_defaults = array(
'color' => '',
'image' => '',
'repeat' => 'no-repeat',
'position' => 'top left',
'attachment' => 'fixed');
感謝
這聽起來不像一個編程問題,而是一個由Devin Price *提供的* Options Framework主題的支持請求。請聯繫軟件供應商以獲取支持選項。 – hakre
只需推動'回聲「身體{'到如果一個語句中,如果你需要的背景變量被設置爲使得它只輸出。 –