分类档案的url queryvar是什么?

时间:2016-11-10 作者:Luca Reghellin

我知道我可以查询如下术语存档:

index.php?taxonomy_name=term_name
但是如何有一个包含所有条款的页面呢?那么“分类学之家”呢?如何查询?我的意思是这样的:

index.php?taxonomy=taxonomy_name
显然,上述方法行不通。一定还有别的办法。大概

1 个回复
SO网友:CodeMascot

我想你可以使用下面的代码-

$terms = get_terms( array(
    \'taxonomy\' => $_GET[\'taxonomy\'], // It will get the taxonomy name from HTTP get variable.
    \'hide_empty\' => false, // If you need to hide the empty taxonomy or not.
) );
现在$terms 将是一个数组,如果有任何分类法或其他分类法,它将通过WP_Error 例子运行aforeach 按照您的意愿进行循环和装饰。有关更多信息read this.

相关推荐

I receive taxonomy id

您好,我想从字段中获取值,但我收到的id代码如下:function add_product_column( $columns ) { //add column $columns[\'new_column\'] = __( \'New column\', \'woocommerce\' ); return $columns; } add_filter( \'manage_edit-product_columns\', \'add_pr