Wordpress - WordPress Query and Database
Which of the following is true about this query code?
$args = ['post_type' => 'post', 'meta_key' => 'color', 'meta_value' => 'red', 'meta_compare' => '='];
$query = new WP_Query($args);
