|
Hi, I would like to display latest recent posts in a bs-slider.
but it does not work if I want to display them together sorted only by date, like integrated Recent Posts widget. Kind regards |
Answered by
crftwrk
Oct 2, 2025
Replies: 1 comment 1 reply
|
Hi,
Solved? |
1 reply
Answer selected by
dzembak
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
order="ASC"orders items in reverse way, oldest first. Useorder="DESC"to order from latest to oldest. But you can omit theorder="DESC" orderby="date"completely, because WordPress shows always newest to oldest by default. So, this is enough to show recent posts:[bs-swiper-* type="post" category="cars, boats" posts="6"]Solved?