我正在尝试在 Wordpress 页面上显示自定义字段值为“in-stock”且自定义字段键名称为“_status”的帖子。
如何在下面添加一行代码,为名为“_status”的自定义字段选择自定义字段值为“in-stock”的帖子?
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');