如何设置分类对象描述? 时间:2014-10-07 作者:Michael Ecklund 我注意到在处理Post类型对象时(使用get_post_type_object();) 和分类对象(使用get_taxonomy();) 有一个叫做“描述”的属性。如何为分类法对象设置此描述属性?我在中看不到它的选项register_taxonomy();, 但我确实在register_post_type();. 1 个回复 最合适的回答,由SO网友:gmazzap 整理而成 我在中看不到它的选项register_taxonomy()它不在Codex中,但完全受支持:add_action( \'init\', function() { register_taxonomy( \'foo\', \'post\', array( \'description\' => \'Hi there!\' ) ); $foo = get_taxonomy( \'foo\' ); echo $foo->description; // output "Hi there!" }); 结束 文章导航