我试图在反向数组之后按字母顺序对名称进行排序。
这是用于以正确的顺序排序姓氏/名字的代码。 一些错误(例如,带有中间名的名称),但除排序外,其余功能均有效。
代码如下:
<?php
$terms = get_terms( 'pa_artist' );
if ( ! empty( $terms ) && ! is_wp_error( $terms ) ){
echo '<ul class="artists">';
foreach ( $terms as $term ) {
$array = explode(" ", $term->name);
if ($array[3]) {
$array[3] = strtoupper($array[3]);
$array[3] = "<strong>".$array[3]."</strong>";
}
elseif ($array[2]) {
$array[2] = strtoupper($array[2]);
$array[2] = "<strong>".$array[2]."</strong>";
} elseif ($array[1]) {
$array[1] = strtoupper($array[1]);
$array[1] = "<strong>".$array[1]."</strong>";
} else {
$array[0] = strtoupper($array[0]);
$array[0] = "<strong>".$array[0]."</strong>";
}
$rarray = array_reverse($array);
sort($rarray);
echo '<li><a href="' .get_term_link( $term ). '" title="' . sprintf( __( 'View all post filed under %s', 'my_localization_domain' ), $term->name ) . '">' . implode(" ", $rarray) . '</a></li>';
}
echo '</ul>';
}
目前,名称的排列方式就好像从未做过相反的操作。
一些示例,起初显示如下:
Auguste Renoir
Pablo Picasso
Paul Gauguin
在反向和if字符串之后,是这样的:
RENOIR Auguste
PICASSO Pablo
GAUGUIN Paul
当我需要它时:
GAUGUIN Paul
PICASSO Pablo
RENOIR Auguste
我尝试了各种排序功能,无法使其正常工作……我找不到在反向数组之后进行排序的方法,甚至有可能吗?
这是在wordpress / woocommerce上使用属性构建的名称列表。
我已经问过这个问题,不幸的是得到了答案……
大约有150个名称需要排序。
我愿意为此付出代价,但是没有人对此感兴趣,因为它不需要太多时间,因此不会付出太多! (仅要求重做整个网站...)
答案 0 :(得分:1)
尝试以下操作:
$terms = get_terms( [ 'taxonomy' => 'pa_artist', 'hide_empty' => false ] );
$names_html = $terms_data = [];
if ( ! empty( $terms ) && ! is_wp_error( $terms ) ){
// 1st Loop: Loop through the terms
foreach ( $terms as $term ) {
$fragments = explode( ' ', $term->name );
if( sizeof($fragments) > 1 ) {
// Manipulate and format the term name
$fragment = '<strong>' . strtoupper($fragments[1]) .'</strong>';
$new_term = $fragment . ' ' . $fragments[0];
// 1st array: We set each formatted term name
$names_html[] = $new_term;
// 2nd array: We set the related data as the Url and the original term name
$terms_data[$new_term] = array(
'link' => get_term_link( $term ),
'name' => $term->name,
);
}
}
// Sort the formatted term names
sort($names_html);
// Output
echo '<ul class="artists">';
// 2nd Loop: Loop through the sorted formatted term names
foreach ( $names_html as $name_html ) {
$link = $terms_data[$name_html]['link'];
$title = sprintf( __( 'View all post filed under %s', 'my_localization_domain' ), $terms_data[$name_html]['name'] );
echo '<li><a href="' . $link . '" title="' . $title . '">' . $name_html . '</a></li>';
}
echo '</ul>';
}
经过测试可以正常工作。