我将此代码放置在何处或如何使用此代码?
function wpa_alter_cat_links( $termlink, $term, $taxonomy ){
if( \'category\' != $taxonomy ) return $termlink;
return str_replace( \'/category\', \'\', $termlink );
}
add_filter( \'term_link\', \'wpa_alter_cat_links\', 10, 3 );
你可能想彻底测试一下它的任何副作用,使用风险自负!
EDIT - 仅更改顶级类别链接:
function wpa_alter_cat_links( $termlink, $term, $taxonomy ){
if( \'category\' == $taxonomy && 0 == $term->parent ){
return str_replace( \'/category\', \'\', $termlink );
}
return $termlink;
}
add_filter( \'term_link\', \'wpa_alter_cat_links\', 10, 3 );
Original Source: Force Wordpress to Show Pages Instead of Category