获取数组中的分类值

时间:2017-12-19 作者:DeluxeD

我有一个分类类型,名为:Products:product\\u cat

我需要数组中此字段内的术语名称。有没有办法得到它们?

1 个回复
最合适的回答,由SO网友:David Sword 整理而成

您可以使用检索分类术语get_terms().

通过他们的文档:

$terms = get_terms( array(
    \'taxonomy\' => \'product_cat\',
    \'hide_empty\' => false,
));
它返回:

(array | int | WP\\u Error)WP\\u Term实例及其子实例的列表。如果任何$分类法不存在,将返回WP\\u错误。

您可以通过执行以下操作查看

echo "<pre>".print_r($terms,true)."</pre>";

结束
获取数组中的分类值 - 小码农CODE - 行之有效找到问题解决它

获取数组中的分类值

时间:2017-12-19 作者:DeluxeD

我有一个分类类型,名为:Products:product\\u cat

我需要数组中此字段内的术语名称。有没有办法得到它们?

1 个回复
最合适的回答,由SO网友:David Sword 整理而成

您可以使用检索分类术语get_terms().

通过他们的文档:

$terms = get_terms( array(
    \'taxonomy\' => \'product_cat\',
    \'hide_empty\' => false,
));
它返回:

(array | int | WP\\u Error)WP\\u Term实例及其子实例的列表。如果任何$分类法不存在,将返回WP\\u错误。

您可以通过执行以下操作查看

echo "<pre>".print_r($terms,true)."</pre>";

相关推荐

Calculations in functions.php

我为自己创建了一个发票主题,并试图在自定义列中获取发票总额。我已经尝试调整模板页面中使用的代码,以便在函数中显示这一点。php文件,但它不工作。我的乘法操作数出现了一个操作数错误,我不知道为什么。这是我的代码(如有任何帮助,将不胜感激)。if( $column_name == \'invoice_total\' ) { $hours = 0; // This allows counting of each sub_field //* Set repeater va