wp_list_pages sort order is different for different languages [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center. Closed 9 years … Read more

Sorting get_post_ancestors array

I have written this code for my breadcrumbs (i’ll give only the part that I have problem with): } elseif (is_page()) { if($post->post_parent){ $anc = get_post_ancestors( $post->ID ); foreach ( $anc as $ancestor ) { $output=”<li><a href=””.get_permalink($ancestor).'” title=”‘.get_the_title($ancestor).'”>’.get_the_title($ancestor).'</a></li><li><i class=”fa fa-angle-right”></i></li>’; echo $output; } So for a page I’m getting the array of ancestors and it … Read more