I need help in getting related post using multiple tags.
I have Post with the tags poetry, motivational, attitude, rules, lines, sigma,inspirations
I wanted wp_query that matche most of these tags.
Note: Note every post has these all tags.
I am working on the site ntAfzal
2
Answers
You can list all your post tags into an array and list the posts which belongs to that tags as below.
You can match most of the tags using
tag__in
.Here I added code for your reference and also you can see the documentation in WordPress for wp_query with tag parameters.