如何在分类搜索wordpress中将child_of与name_like一起使用

时间:2019-06-29 05:49:49

标签: wordpress wordpress-theming

$args = array(
        'taxonomy'=>'movie_cat',
        'hide_empty'=>0,
        'child_of'=>169,
        'name__like' => 'jal'

    );
    $terms = get_terms($args);

我想要一个名为“ movie_cat”的分层分类法

cat1
   cat2
   cat3
      cat4
      cat5
cat6
and so on.

现在我首先仅获得基于cat1或cat6的顶级类别,而该类别想通过具有“ child_of”属性的“ name__like”属性来搜索cat5。但我无法搜索。

那么您有什么解决办法吗?

0 个答案:

没有答案