WordPress
kaldır

0 Cevap php

Ben son ayırıcısını kaldırmak için çalışıyorum (normalde bir <br/> etiketi ama ben bunu için "/ /" olarak değiştirildi) wp_list_categories gelen son bağlantıdan.

Temelde bu istiyorum:

Kategori 1 / / Kategori 2 / / Kategori 3 / /

Bu gibi bakmak:

Kategori 1 / / Kategori 2 / / Kategori 3

İşte kullanıyorum geçerli kod:

<?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 />'=>' // '));
?>

Teşekkürler!

0 Cevap