在将术语名称保存到数据库之前,如何删除其重音符号?
// populate term
if( empty ($d)) {
} else {
foreach ($d as $key=>$name){
$d_term = $name;
if ( has_term($d_term, $d_taxonomy)) {
// nothing happens
} else {
wp_set_object_terms( $post_id, $d_term, $d_taxonomy, true );
}
}
}
我尝试使用WP remove\\u accents函数以及类似的php函数,如:
remove_accents($d_term);
没有成功。