「在庫あり」のカスタム フィールド値と「_status」のカスタム フィールド キー名を使用して、Wordpress ページに投稿を表示しようとしています。
「_status」というカスタム フィールドのカスタム フィールド値が「在庫あり」の投稿を選択する以下のコード行を追加するにはどうすればよいですか?
global $wp_query;
$wp_query->set("orderby",'meta_value_num');
$wp_query->set("meta_key",'inventory_number');
$wp_query->set("order",'desc');
$wp_query->set("category_name",'tape');