回答:
wp_get_object_terms()は、オブジェクト(たとえば、投稿、ページ、カスタム投稿)に関連付けられた用語をテキスト(通常は配列)として返します。
wp_get_object_terms()のCodexページから
$productcategories = wp_get_object_terms($post->ID, 'productcategories');
ただし、@ anuが正しい場合、php関数strip_tagsを呼び出して、戻り値のタグを削除できることがわかりました。
$terms = get_the_term_list( $post->ID, 'tags' );
$terms = strip_tags( $terms );
$terms = strip_tags( $terms, '<li>' );
get_the_terms()
。詳細については、コーデックスのページをご覧ください。