我基本上想循环浏览我的每一篇文章,并获得分类法/类别id。之后,我想将这些id输出到一个字符串中(不是作为数值),用空格分隔。
我在尝试回显字符串时出现以下错误:"Object of class WP_Term could not be converted to string"
以下是我目前掌握的情况:
<?php
$taxonomy = wp_get_object_terms($post->ID, \'categories\');
$ids = "";
foreach ($taxonomy as $cat) {
$ids .= $cat;
?>