自定义分类,显示空值(网站主页)

时间:2016-10-02 作者:user3143800

我在wp\\U terms\\U taxonomy表中添加了记录,并希望显示列表项(类似下拉列表)中的记录存在于表单中。

因为我在分类表中添加了两条记录(taxonomy\\u name=units\\u category)。显示两个li标记,但值为空。

代码为:

$unit_taxonomies = array(
  \'units_category\'
);

$unit_args = array(
  \'orderby\'    => \'name\', 
  \'order\'      => \'ASC\',
  \'hide_empty\' => false
);

$unit_terms  = get_terms($unit_taxonomies, $unit_args);

print_r($unit_terms)

1 个回复
SO网友:Jan Novak

如果您使用的是比4.5.0更新的WordPress,则get\\u terms()函数略有不同。看看get_terms() 释义第二个参数已弃用,所有内容都通过第一个参数传递。

相关推荐

nothing happen in search form

我想创建搜索表单,但当我搜索时什么都没有发生,这是代码:索引。php: <div class=\"tech-btm\"> <?php get_search_form();?> </div> 搜索表单:<form role=\"search\" method=\"get\" id=\"searchform\" action=\"<?php echo home_url(\'/\')?>\"> &