参照元:http://wordpress-obo.egaki.net/wordpress-all/plugin/post-82/
下記コードをfanctions.phpに追記すると、
自分で入力した半角英数文字のスラッグ以外は、自動で、{投稿タイプ}-{記事ID}に変換される。
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 );
コメントする