使用页面标题作为术语档案的链接 时间:2013-10-11 作者:Net Shapira 我想这样做(注意第4行):$term_link = get_term_link( $term, \'genre1\' ); if( is_wp_error( $term_link ) ) continue; echo \'<li><a href="\' . $term_link . \'">***<?php the_title();?>***</a></li>\'; 但我不知道怎么做。 1 个回复 SO网友:Max Yudin 如果我对你的理解是正确的,那么以下就是你所需要的:$term_link = get_term_link( $term, \'genre1\' ); // if there is no error print the link if( !is_wp_error( $term_link ) ) echo \'<li><a href="\' . $term_link . \'">\' . get_the_title() . \'</a></li>\'; 结束 文章导航