gpt4 book ai didi

php - WordPress 从 wp_list_categories 中的最后一项删除
分隔符

转载 作者:行者123 更新时间:2023-11-28 03:55:17 24 4
gpt4 key购买 nike

我正在尝试从 wp_list_categories 的最后一个链接中删除最后一个分隔符(通常是 <br/> 标记,但我将其更改为“//”)。

基本上我想要这个:

类别 1//类别 2//类别 3//

看起来像这样:

类别 1//类别 2//类别 3

这是我目前使用的代码:

<?php
$cat_array = array();
$args=array(
'author' => get_the_author_meta('id'),
'showposts'=>-1,
'caller_get_posts'=>1
);
$author_posts = get_posts($args);
if( $author_posts ) {
foreach ($author_posts as $author_post ) {
foreach(get_the_category($author_post->ID) as $category) {
$cat_array[$category->term_id] = $category->term_id;
}
}
}

$cat_ids = implode(',', $cat_array);
echo strtr(wp_list_categories('include='.$cat_ids.'&title_li=&style=none&echo=0'),array('<br />'=>' // '));
?>

谢谢!

最佳答案

使用修剪:

trim(wp_list_categories('include='.$cat_ids.'&title_li=&style=none&echo=0'), '/')

关于php - WordPress 从 wp_list_categories 中的最后一项删除 <br/> 分隔符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3532378/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com