0
我無法添加將添加選擇選項的功能,我可以選擇我的樣式表。如何在略有修改的選項框架中添加樣式表選擇選項
假設我有3個樣式表(red.css,blue.css和green.css)。現在我想在SMOF中添加一個函數,我可以選擇樣式表,我的WordPress網站的設計將根據樣式表進行更改。
我的代碼如下─
//Stylesheets Reader
$alt_stylesheet_path = LAYOUT_PATH;
$alt_stylesheets = array();
if (is_dir($alt_stylesheet_path))
{
if ($alt_stylesheet_dir = opendir($alt_stylesheet_path))
{
while (($alt_stylesheet_file = readdir($alt_stylesheet_dir)) !== false)
{
if(stristr($alt_stylesheet_file, ".css") !== false)
{
$alt_stylesheets[] = $alt_stylesheet_file;
}
}
}
}
和
$of_options_select = array("option 1","option 2","option 3");
$of_options[] = array( "name" => "Logo Uploader",
"desc" => "Upload logo",
"id" => "logo",
"std" => "three",
"type" => "select",
"options" => $of_options_select
);
請人幫助我。我想在我的WordPress主題中選擇這些功能。
這應該移到[wordpress.stackexchange.com](http://wordpress.stackexchange.com/)。 –