WordPress获取当前文章自定义分类法名称

之前悟空搜出过一期WordPress开发网址导航的教程,没有印象的朋友可以在看看。

在开发过程中我需要在网址导航内页获取到当前网址的自定义分类法名称,最近在WordPress智库看到了答案,于是记录下来:


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
function custom_taxonomies_terms_links(){
    //根据当前文章ID获取文章信息
    $post = get_post( $post->ID );

    //获取当前文章的文章类型
    $post_type = $post->post_type;

    //获取文章所在的自定义分类法
    $taxonomies = get_object_taxonomies( $post_type, 'objects' );

    $out = array();
    foreach ( $taxonomies as $taxonomy_slug => $taxonomy ){
        $term_list = wp_get_post_terms($post->ID, $taxonomy_slug, array("fields" => "all"));
        echo $term_list[0]->name; //显示文章所处的分类中的第一个
    }

    return implode('', $out );
}

以上代码对于文章在自定义分类法和默认分类目录的时候都是可用的。

原文链接:https://xiaohost.com/1566.html,转载请注明出处。
0

评论0

请先