[wp-trac] [WordPress Trac] #38308: wp query and term metadata

WordPress Trac noreply at wordpress.org
Fri Oct 14 08:27:04 UTC 2016


#38308: wp query and term metadata
-----------------------------+-----------------------------
 Reporter:  Hrohh            |      Owner:
     Type:  feature request  |     Status:  new
 Priority:  normal           |  Milestone:  Awaiting Review
Component:  Query            |    Version:  trunk
 Severity:  normal           |   Keywords:
  Focuses:  administration   |
-----------------------------+-----------------------------
 It would by possible to extend like that?
 {{{#!php
 <?php
 $args = array(
         'post_type' => 'post',
         'tax_query' => array(
                 array(
                         'taxonomy'      => 'people',
                         'field'         => 'meta',
                         'meta_query'    => array(
                                 array(
                                         'key' => 'map',
                                         'compare' => 'EXIST'
                                 )
                         )
                 ),
         ),
 );
 $query = new WP_Query( $args );
 ?>
 }}}

--
Ticket URL: <https://core.trac.wordpress.org/ticket/38308>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform


More information about the wp-trac mailing list