Skip to content
Advertisement

Get tag slugs from wp post that begin with specific letters then use them in a qp_query

I am trying to create a list of tags that I can use in an array within a wordpress wp_query. I’ve made the tags appear in the template (via echo) so I know I have the output, but I don’t know how to move/use the output from this into the array of the separate wp_query. I normally can find out how to do things via searching but I don’t know what the name is of what I am trying to do. I’m self/internet taught.

JavaScript

This outputs:

JavaScript

I need to figure out how to put that into a wp_query for the same post:

JavaScript

I do have it working right now but I have to manually type 256 possible tags with sim-… slugs into my wp_query. Automating that would be nice…

Advertisement

Answer

Build a list of your collected sims in a plain array and pass that in an associative array (map) to WP_Query.

Untested but something like …

JavaScript

Hope that’s close.

Dave

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement