I
I
IgorNoskov2018-04-03 14:48:51
WordPress
IgorNoskov, 2018-04-03 14:48:51

How to get taxonomy terms in Wordpress that contain posts with a certain meta field?

Good afternoon!
I'm confused about getting the taxonomy terms that contain posts with a certain meta field.
For example, posts have a "country" meta field. So we need to get the terms whose posts have the country" meta field with the value "RU". Help, please, who faced a similar task.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
E
E, 2018-04-03
@IgorNoskov

$wpdb->query() and here we write a SQL query with 3 JOINs
as the so

...
left join wp_postmeta as pm
  on p.ID = pm.post_id
left join wp_term_relationships as tr
  on tr.object_id = p.ID
left join wp_terms as t
  on tr.term_taxonomy_id = t.term_id
...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question