当我在我的一个页面上运行查询监视器时,我收到一个通知;数组到字符串的转换;对于以下行:
$terms = get_the_terms( $post->ID , array( \'product-categories\') );
然后,我在以下位置查看文档以获取\\u\\u术语:
https://developer.wordpress.org/reference/functions/get_the_terms/, 第二个参数是字符串。
然而,在进一步阅读之后,我在上面的链接中发现了一些示例,一些示例直接使用字符串,如下所示:
$terms = get_the_terms( $post->ID , array( \'teams_positions\') );
但有些人使用数组,如下所示:
$post_categories = get_the_terms( $post->ID, \'category\' );
所以我完全糊涂了。