有关详细信息,请参阅以下答案:Remove Dash/Hyphen From Wordpress CustomPosttype Permalink
在您的功能中。php:
function no_dashes($title) {
return str_replace(\'-\', \'\', $title);
}
add_filter(\'sanitize_title\', \'no_dashes\' , 9999);
对于特定类型的职位:
function no_dashes( $slug, $post_ID, $post_status, $post_type ) {
if( $post_type == "page" ) {
$slug = str_replace( \'-\', \'\', $slug);
}
return $slug;
}
add_filter( "wp_unique_post_slug", "no_dashes", 10, 4 );