使用_Term_List()在<ul>中显示我的自定义分类 时间:2011-06-03 作者:levigideon 我需要有关使用\\u term\\u list()在ul中显示自定义分类法的帮助。我可以让它列出我想要的所有术语,但我需要一个无序的列表,而不仅仅是一个由注释分隔的链接列表。以下是我需要解决的问题:<?php echo get_the_term_list($post->ID, \'skills\', \'<h5>Project Role</h5> \', \', \', \'\', ); ?> 以下是WordPress函数参考,如果您需要:http://codex.wordpress.org/Function_Reference/get_the_term_list 1 个回复 SO网友:Bainternet Try this <?php echo get_the_term_list($post->ID, \'skills\', \'<h5>Project Role</h5><ul><li> \', \'</li><li>\', \'</li></ul>\' ); ?> 结束 文章导航