WordPressのカスタム投稿タイプのパーマリンクをカスタマイズ可能にするプラグインです。
Custom Post Type Permalinksと違い、アーカイブのパーマリンクのカスタマイズなどは行いません。また、カスタムタクソノミーには対応していません。
とにかくシンプルにカスタム投稿タイプののパーマリンクを変更できます。
使い方
管理画面から変更
インストール後、「設定」-> 「パーマリンク設定」のページにアクセスして、パーマリンクを設定して下さい。%post_id%と%postname%のタグが利用可能です。
PHPで変更
register_post_typeの第2引数の連想配列に、sptp_permalink_structure
というキーで、設定値を入力して下さい。
管理画面からの設定よりこれは優先されます。
register_post_type( 'foo', array( "public" => true, 'has_archive' => true, "rewrite" => [ "with_front" => true ], "sptp_permalink_structure" => "foo/%post_id%" ) );
管理画面
Download
Plugin Directory:https://wordpress.org/plugins/simple-post-type-permalinks
Github: https://github.com/torounit/simple-post-type-permalinks
Note
- 要望、応援メッセージなどは@Toro_Unitまでお願いします。
- 使い方の相談等は、WordPress フォーラムまでお願いします。
- Pull Request待ってます。
Change log
- 2015-04-02 1.0.0 First Release.