0
我想給出一個條件來選擇一個類別來顯示我的主題上特定類別的帖子。使用smof框架我無法做到這一點。在WordPress主題中使用SMOF
query_posts('category_name=hot&showposts=1');
if (have_posts()) while (have_posts()) : the_post();
是我的代碼顯示類別「熱門」的特色帖子;但我想給一個條件從主題選項中選擇類別。
這裏是SMOF代碼來創建選擇類別
$of_options[] = array( "name" => "Select a Category",
"desc" => "A list of all the categories being used on the site.",
"id" => "example_category",
"std" => "Select a category:",
"type" => "select",
"options" => $of_categories
);
如何使用這個功能呢?
歡迎StackOverflow上。此答案已被標記爲質量審覈,因爲這是我們所稱的「僅限代碼」答案。它並未被刪除,但我們希望將您的注意力引向[答案]。謝謝你的幫助。 –