我有一个客户正在使用WPCasa theme.
主题有一个名为properties
上面有分类(for rent
, for sale
, 等等)。
我的客户希望在其标题上显示物业的类别(即“迈阿密海滩出租屋”)。然而,我无法得到它。我正在寻找代码并尝试所有代码,但没有结果。
我不知道是代码还是我没有把它放在正确的地方functions.php
).
如果有人能帮助我,我将非常感激。
我尝试的代码是:
<?
php $terms = get_the_terms( $post->ID , \'custom taxonomy name\' );
foreach ( $terms as $term ) {
echo $term->name
}
?>