我對此很新穎。所以我迄今爲止做了什麼。我用下面的代碼用我所有的第一級類別來生成元素:添加一個鏈接到<option>由wp_dropdown_categories()生成的元素
<?php
$args = array(
'show_option_all' => 'Blog Categories',
'show_option_none' => '',
'option_none_value' => '-1',
'orderby' => 'ID',
'order' => 'ASC',
'show_count' => 0,
'hide_empty' => 0,
'child_of' => 0,
'exclude' => '',
'include' => '4,2,3,5,6',
'echo' => 1,
'selected' => 0,
'hierarchical' => 1,
'name' => 'cat',
'id' => 'cat-blog',
'class' => 'form-control mt33',
'depth' => 0,
'tab_index' => 0,
'taxonomy' => 'category',
'hide_if_empty' => false,
'value_field' => 'term_id',
);
wp_dropdown_categories($args);
?>
但遺憾的是我不能管理到<a href="">
添加到由wp_dropdown_categories功能生成所有<option>
標籤。
是否可以爲每個生成的類別添加鏈接。我想將用戶重定向到選定的類別頁面。
在此先感謝亞歷克斯
謝謝函數naveed。你的代碼不適合我的需求。它設法顯示第一個選項,即博客類別(手動編碼)和未分類類別。並且沒有鏈接下拉選定元素
檢查我剛剛更新的代碼。欲瞭解更多信息,您可以訪問這兩個WordPress的功能 https://developer.wordpress.org/reference/functions/get_categories/ https://developer.wordpress.org/reference/functions/get_terms/ https:// codex.wordpress.org/Function_Reference/get_category_link –