WP-CLI-返回具有匹配元键的帖子

时间:2017-03-26 作者:fightstarr20

我正在使用WP-CLI管理我的网站。我可以运行以下命令

wp post list --fields=ID,mycustomfield

 ID   |  mycustomfield
-----------------------
 1    |  active
 2    |  active
 3    |  disabled
 4    |  active
我试图缩小这个列表,只退回那些mycustomfield 处于活动状态

有什么办法吗?

2 个回复
SO网友:fightstarr20

设法解决这个问题,你可以通过--meta_key--meta_compare 像这样的参数。。。

wp post list --fields=ID,mycustomfield --meta_key=mycustomfield \'--meta_compare=active\'

ID   |  mycustomfield
-----------------------
 1    |  active
 2    |  active
 4    |  active

SO网友:Mat Lipe

你可以通过任何标准WP_Query 参数作为wp post list 命令

--<field>=<value>

在您的示例中,您将使用元查询参数。

wp post list --fields=ID,mycustomfield --meta_key=mycustomfield --meta_value=active

Vague documentation is here.