Я пытался использовать этот код для отображения термина перед последним (последний = последний добавленный), чтобы автоматически отображать ссылку на предыдущий выпуск моих публикаций:
$args = array( 'hide_empty=0' );
$terms = get_terms( 'issue', 'orderby=id&order=DESC' );
if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) {
$count = count( $terms );
$i = 0;
$term_list = '';
foreach ( $terms as $term ) {
$i++;
$term_list .= '<a href="' . get_term_link( $term ) . '" title="' . sprintf( __( 'View all post filed under %s', 'my_localization_domain' ), $term->name ) . '">(' . $term->name . ')</a>';
if ( $count != $i ) {
$term_list .= ' , ';
}
else {
$term_list .= '';
}
}
$result = implode(",", array_slice(str_word_count($term_list, 1), 0, -1));
echo $result;
но это не сработало. это показывает
a,href,http,localhost,,issue,vol-,-no-,title,View,all,post,filed,under,Vol,-,No,Vol,-,No,a,a,href,http,localhost,i,issue,vol-,-no-,title,View,all,post,filed,under,Vol,-,No,Vol,-,No,a,a,href,http,localhost,i,issue,title,View,all,post,filed,under,a,a,href,http,localhost,,issue,title,View,all,post,filed,under
Любые предложения, пожалуйста?
Задача ещё не решена.
Других решений пока нет …