$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>php - How to separate categories with commas?|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

php - How to separate categories with commas?

matteradmin8PV0评论

I have this function that displays the specified hierarchy level category of a post. For example <?php display_cat_level(0,true); ?> will display the top/parent category, while <?php display_cat_level(2,true); ?> will display the second child category.

If the post has more than one category in any given level then the categories will be displayed inline with no spaces or commas between them like this cat1acat1bcat1c instead of cat1a, cat1b, cat1c. How would I update the function to comma separate multiple categories displayed?

function get_level($category, $level = 0)
{
    if ($category->parent == 0) {
        return $level;
    } else {
        $level++;
        $category = get_term( $category->parent );
        return get_level($category, $level);
    }
}

function display_cat_level( $level = 0 , $link=false){

    $cats = get_the_terms( null, 'category' );
    if( $cats ){
        foreach($cats as $cat){
            $current_cat_level = get_level($cat);
            if( $current_cat_level  == $level ){
                if($link==true) {
                    echo '<a href="'.get_term_link( $cat->term_id ).'">'.$cat->name."</a>";
                } else {
                    echo $cat->name."";
                }
            }
        }
    }
}

I have this function that displays the specified hierarchy level category of a post. For example <?php display_cat_level(0,true); ?> will display the top/parent category, while <?php display_cat_level(2,true); ?> will display the second child category.

If the post has more than one category in any given level then the categories will be displayed inline with no spaces or commas between them like this cat1acat1bcat1c instead of cat1a, cat1b, cat1c. How would I update the function to comma separate multiple categories displayed?

function get_level($category, $level = 0)
{
    if ($category->parent == 0) {
        return $level;
    } else {
        $level++;
        $category = get_term( $category->parent );
        return get_level($category, $level);
    }
}

function display_cat_level( $level = 0 , $link=false){

    $cats = get_the_terms( null, 'category' );
    if( $cats ){
        foreach($cats as $cat){
            $current_cat_level = get_level($cat);
            if( $current_cat_level  == $level ){
                if($link==true) {
                    echo '<a href="'.get_term_link( $cat->term_id ).'">'.$cat->name."</a>";
                } else {
                    echo $cat->name."";
                }
            }
        }
    }
}
Share Improve this question edited Nov 25, 2018 at 8:30 Krzysiek Dróżdż 25.6k9 gold badges53 silver badges74 bronze badges asked Nov 25, 2018 at 7:46 PetePete 1,0582 gold badges14 silver badges40 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

All you have to do is to track if you already echoed some category and add a comma in such case:

function get_level($category, $level = 0) {
    if ($category->parent == 0) {
        return $level;
    }

    $category = get_term( $category->parent );
    return get_level( $category, $level + 1 );
}

function display_cat_level( $level = 0, $link = false) {
    $cats = get_the_terms( null, 'category' );
    $echoed = 0;

    if ( $cats ) {
        foreach ( $cats as $cat ) {
            $current_cat_level = get_level( $cat );
            if ( $current_cat_level  == $level ) {
                if ( $echoed ) {
                    echo ', ';
                }
                if ( true == $link ) {
                    echo '<a href="' . get_term_link( $cat->term_id ) . '">' . esc_html( $cat->name ) . "</a>";
                } else {
                    echo esc_html( $cat->name );
                }
                $echoed++;
            }
        }
    }
}

PS. I've also simplified your get_level function a little bit and added some html escaping in display_cat_level.

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far