到目前为止,我有这个代码,它很适合显示自定义分类术语的链接。
<a href="<?php echo get_term_link($category->term_id, 'galerija-taxonomy'); ?>">
然后我用WPML翻译了不同语言的术语,代码不再正常工作,它与以前相同(默认语言slug分类法)。
如何格式化所有语言的正确代码以获得正确的术语链接?
答案 0 :(得分:1)
试试这个:
<?php $term_link = get_term_link($category->term_id, 'galerija-taxonomy');?>
<a href="<?php echo esc_url( $term_link );?>"><?php _e('Maak een afspraak','yoursite'); ?></a>
有关详细信息,请参阅:https://developer.wordpress.org/reference/functions/_e/
希望这适合你。