在单独的下拉列表中显示父分类和子分类

时间:2012-03-28 作者:Solomon Henry

Possible Duplicate:
How can I display parent and child taxonomies in separate drop downs?

如果我有一个分类法状态,它是父分类法,它有一个子分类法,称为城市,需要将状态显示为下拉列表,当我选择州税时,我必须在第二个下拉列表中显示城市税。。。。。请帮帮我。。

1 个回复
SO网友:janw

get_terms() 做你想做的事。

<?php
$cities = get_terms( \'state\', array(
    \'child_of\'    => 3 //ID of the state term
    //other args you want see the docs
));
var_dump($cities);
未经测试,但应能正常工作
德国劳埃德船级社

结束

相关推荐