Answer the question
In order to leave comments, you need to log in
How to display wordpress category posts alphabetically with letter?
In general, the essence of the issue is in the picture. I found a solution how to sort alphabetically, but I don’t know how to display a letter.
Answer the question
In order to leave comments, you need to log in
something like this
$_flag = []; // онтрольный массив
if ( have_posts() ) : while ( have_posts() ) : the_post();
$first = mb_substr( get_the_title(), 0, 1 );
if ( ! in_array( $first, $_flag ) ) { //проверка на наличие первой буквы в массиве
// если ее там нет, выводим букву и добавляем в контрольный мавссив
printf( '<h3>%s</h3>', $first );
$_flag[] = $first;
}
/**
* тут выод записи
*/
endwhile;
else :
endif;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question