如何将自定义分类类别添加到帖子和页面?

时间:2013-01-31 作者:Waseem Abu Senjer

我正在尝试构建新的wordpress插件。除了帖子和页面发布屏幕中的默认wordpress类别框之外,我还想为自定义分类类别添加另一个框,我如何才能做到这一点?

1 个回复
最合适的回答,由SO网友:Eugene Manuilov 整理而成

您只需在的第二个参数中将所需的post类型作为数组传递register_taxonomy 函数调用:

add_action( \'init\', \'wpse8170_init\' );
function wpse8170_init() {
    register_taxonomy( \'my-taxonomy\', array( \'post\' ), array(
        ...
    ) );

    // or call this function if your taxonomy is already registered
    register_taxonomy_for_object_type( \'my-taxonomy\', \'page\' );
}

结束

相关推荐

Sort post's categories by ID

我有一个博客,其中几个帖子的类别必须先输出,然后再输出其他类别。与其他类别相比,这些类别的ID较低。我正在使用get_the_category_list 但它并没有像我预期的那样工作。这让我很困惑,因为我记得有一个主题做得很好。有人能给我指出正确的方向吗?谢谢<?php get_the_category_list( array( \'orderby\' => \'ID\', \'order\' => \'ASC\' ) ); ?>&