カスタム分類のページの URL を変更する

固定ページなどでは親をつけたりして、パーマリンクの設定が可能です。
今回はアーカイブページの場合のスラッグのつけ方を紹介します。

register_post_type(
 'news',
 array(
 'label' => 'お知らせ',
 'public' => true,
 'hierarchical' => false,
 'has_archive' => true,
 'rewrite' => array('slug' => '親/news'),
 'supports' => array(
 'title',
 'editor',
 'thumbnail',
 'excerpt'
 ),
 'menu_position' => 1
 )
 );

‘rewrite’ => array(‘slug’ => ‘親/news’),

rewrite パラメータ
「rewrite => array(‘slug’ => ‘カスタム投稿名’)」と指定すると
「http://ブログのアドレス / 親階層 / カスタム分類のスラッグ / 」でアクセスできます。

admin

cl0606

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です