Hi there,
There’s no way to edit the post meta order by default, unfortunately.
But you can try going the CSS approach.
Try this CSS:
.wp-show-posts-entry-meta {
display: flex;
flex-wrap: wrap;
flex-direction: row;
}
span.wp-show-posts-posted-on {
order: -1;
}
.wp-show-posts-entry-meta > :nth-child(2){
order: 0;
}
.wp-show-posts-entry-meta > :nth-child(4){
order: 4;
}
.wp-show-posts-entry-meta > span.wp-show-posts-separator {
padding: 0 5px;
}
span.wp-show-posts-byline {
order: 3;
}
span.wp-show-posts-terms {
order: 5;
}