我想在页面的侧栏中以小部件的形式显示包装在链接/锚标记中的产品指定术语。我没有获得正确的标记URL。代码返回已访问的产品URL,而不是列出的标记URL。
下面是代码中有问题的部分。正确使用什么get_the_terms()
?
$custom_terms = get_the_terms( 0, \'product_tag\' );
if ( $custom_terms ) {
foreach ( $custom_terms as $custom_term ) {
echo \'<a href="\'
. esc_url( $term_link )
. \'" style="font-size: 8pt;">\'
. $custom_term->name
. \'</a>\';
}
}
我想是我做错了什么
esc_url( $term_link )
, 但是什么呢?