SOHO建站

wordpress子分类调用父分类名称和链接

专为导航而生,在wordpress模板制作过程中常常会在做breadcrumbs导航时会用到,子分类调用父分类的名称和链接,下面这段简洁的代码,可以完美解决这个问题。

<?php echo get_category_parents( $cat, true, ' &raquo; ' ); ?>

下面这种方法也可以,不过代码不够简洁。

<?php
if ( is_category() ) {
    // Get the current category term id.
    $query_obj = get_queried_object();
    $term_id   = $query_obj->term_id;
 
    echo get_term_parents_list( $term_id, 'category' );
}
?>

第三种方法,调用分类目录名称和链接,作为导航。

<?php
if ( ( is_tax() || is_category() || is_tag() ) ) {
    $trail     = '';
    $home      = '/<a href="' . get_home_url() . '">Home</a>';
    $query_obj = get_queried_object();
    $term_id   = $query_obj->term_id;
    $taxonomy  = get_taxonomy( $query_obj->taxonomy );
 
    if ( $term_id && $taxonomy ) {
        // Add taxonomy label name to the trail.
       // $trail .=  '/' . $taxonomy->labels->menu_name;
        // Add term parents to the trail.
        $trail .= '/' . get_term_parents_list( $term_id, $taxonomy->name, array( 'inclusive' => false ) );
    }
 
    // Print trail and add current term name at the end.
    echo '<p class="breadcrumb-trail">' . $home . $trail . $query_obj->name . '</p>';
}
?>
Published
Categorized as 建站知识 Tagged ,

By SOHO

wowsoho.com是一个wordpress建站公司

wordpress父分类和归档页调用子分类名称和链接

分类名称与分类链接调用问题,category和archives调用下级子分类的名称和链接。

wordpress搭建公司官网有什么优势

WordPress是一个强大而灵活的内容管理系统,广泛用于搭建各种类型的网站,包括企业官网。以下是使用WordPress搭建公司官网的优势以及一些建议。

为wordpress添加自定义多级菜单的方法

要在WordPress中创建多级菜单,您需要使用递归函数来处理菜单项的嵌套关系。

Chinese WordPress service company jianzhanpress

Chinese WordPress service company jianzhanpress.com spe… Continue reading Chinese WordPress service company jianzhanpress

WordPress模板制作学习笔记

从今天正式开始

WordPress外贸建站课程深度探讨

  在数字化时代,拥有一个专业的网站对于企业和个体创业者而言至关重要。WordPress外贸建站课程为零基础者… Continue reading WordPress外贸建站课程深度探讨