Stinger系のWordpressテーマを使っているときにbbpressをインストールすると日本語タイトルのトピックを作るとすべて”topics-0″になってURLが重複してしまう。
functions.phpの以下のエントリが邪魔しているので、コメントアウトするとちゃんと動作する。
//WordPress の投稿スラッグを自動的に生成する
//function auto_post_slug( $slug, $post_ID, $post_status, $post_type ) {
// if ( preg_match( '/(%[0-9a-f]{2})+/', $slug ) ) {
// $slug = utf8_uri_encode( $post_type ) . '-' . $post_ID;
// }
// return $slug;
//}
//add_filter( 'wp_unique_post_slug', 'auto_post_slug', 10, 4 );