可以将任何属性添加到<select> 使用wordpress筛选器wp_dropdown_cats . wp_dropdown_cats 过滤器允许您修改分类法下拉输出的内容。尝试以下代码。
function addAttributeToDropdown($html_content){
$html_content = str_replace(\'<select\',\'<select onchange="myFunc()"\',$html_content);
return $html_content;
}
add_filter(\'wp_dropdown_cats\',\'addAttributeToDropdown\');
将此添加到
functions.php 文件