/** * スラッグの日本語を自動変換 */ function auto_post_slug( $slug, $post_ID, $post_status, $post_type ) { // URLスラッグに特定のパターンが含まれている場合 if ( preg_match( '/(%[0-9a-f]{2})+/', $slug ) ) { // 投稿のタイプ(post_type)をURIエンコードし、投稿IDをつなげて新しいスラッグに設定 $slug = utf8_uri_encode( $post_type ) . '-' . $post_ID; } // 新しいスラッグを返す return $slug; } // wp_unique_post_slugフィルターに自動生成関数を追加 add_filter( 'wp_unique_post_slug', 'auto_post_slug', 10, 4 ); Calendar - Suto Takatsugu Official WebSite

Calendar

PAGE TOP