如果是术语的一部分,则显示模板部件

时间:2019-12-17 作者:webmaster touche

我不是一个受过教育的程序员,但通常我可以把现有的代码放在一起,这样它就能按我想要的方式工作。但这次我迷路了,我觉得我什么都试过了。

如果产品是特定术语的一部分,我将尝试仅显示模板部分。这是我尝试过的众多代码片段之一。

我希望这对我的尝试有意义,如果没有,我会回答任何问题:)

 $taxonomy = taxonomy_exists( \'produkttype\' );
 if ( $term = \'pude\' && $term = \'senge\' ) {
      echo get_template_part( \'partials/sections/section\', \'trustpilot\' );
    }

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

Try this

if( has_term(\'pude\', \'produkttype\') || has_term(\'senge\', \'produkttype\')) {

   get_template_part( \'partials/sections/section\', \'trustpilot\' );

}

相关推荐

Filter "get_terms" query

我目前正在使用以下方法从自定义分类中获取数据:$terms = get_terms(array( \'taxonomy\' => \'my_custom_taxonomy_name\', \'hide_empty\' => true )); 现在,这在每个WP_Term 对象term_id, name, slug, term_group, term_taxonomy_id, taxonomy, description, parent, coun