Filtering posts by post meta data - WordPress Development Stack Exchange

PHOTO EMBED

Fri Oct 07 2022 13:31:50 GMT+0000 (Coordinated Universal Time)

Saved by @kalehm

  $my_query = new WP_Query( 
    array(
      'post_type' => 'post',
      'meta_query' => array(
        array(
          'key' => 'project_cat',
          'value' => 'my-value',
        )
      ),

        // Other query properties
    ) 
  );
content_copyCOPY

https://wordpress.stackexchange.com/questions/48516/filtering-posts-by-post-meta-data