应用于链接的自定义分类

时间:2014-11-11 作者:Marco Montanari

是否可以对链接应用自定义分类法?如果是,怎么做?

我已经这样做了,但似乎不起作用:

$labels = array(
    \'name\'                       => _x( \'Lessons\', \'Taxonomy General Name\', \'text_domain\' ),
    \'singular_name\'              => _x( \'Lesson\', \'Taxonomy Singular Name\', \'text_domain\' ),
    \'menu_name\'                  => __( \'Lesson\', \'text_domain\' ),
    \'all_items\'                  => __( \'All Lesson Lessons\', \'text_domain\' ),
    \'parent_item\'                => __( \'\', \'text_domain\' ),
    \'parent_item_colon\'          => __( \'\', \'text_domain\' ),
    \'new_item_name\'              => __( \'New Lesson\', \'text_domain\' ),
    \'add_new_item\'               => __( \'Add new Lesson\', \'text_domain\' ),
    \'edit_item\'                  => __( \'Edit Lesson\', \'text_domain\' ),
    \'update_item\'                => __( \'Update Lesson\', \'text_domain\' ),
    \'separate_items_with_commas\' => __( \'Separate Lessons with commas\', \'text_domain\' ),
    \'search_items\'               => __( \'Search Lessons\', \'text_domain\' ),
    \'add_or_remove_items\'        => __( \'Add or remove Lessons\', \'text_domain\' ),
    \'choose_from_most_used\'      => __( \'Choose from the most used Lessons\', \'text_domain\' ),
    \'not_found\'                  => __( \'Not Found\', \'text_domain\' ),
);
$args = array(
    \'labels\'                     => $labels,
    \'hierarchical\'               => true,
    \'public\'                     => true,
    \'show_ui\'                    => true,
    \'show_admin_column\'          => true,
    \'has_archive\'                => true,
    \'show_in_nav_menus\'          => true,
    \'show_tagcloud\'              => true,
);
register_taxonomy( \'lesson\', array( \'post\',\'portfolio\',\'link\', \'forum\' ), $args );
谢谢

马可

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

链接管理器最多是一种伪post类型。您可以使用默认的“类别”,也可以循环使用,(1)在新的帖子类型上注册新的帖子类型+自定义分类法,或者(2)在帖子上使用帖子格式+自定义分类法

Links Manager

Registering a new Post Type

Post Formats

结束

相关推荐

编辑Pagina_Links()的格式

我正在使用paginate_links 对循环的结果分页。我想用点而不是数字来设置分页的样式,但我不知道该怎么做。我可以尝试使用css,但我更喜欢干净的方法。example. <- o o o -> currently. <- 1 2 3 -> 这就是我目前输出链接的方式。<?php