Wordpressにカスタムpost_typeを追加しており、パーマリンク構造を次のようにしたいと思います。
/%post_type%/%year%/%monthnum%/%postname%/
日付タグを追加する方法がわかりません。このコードを使用して、私に与えます/my_type/example-post-slug/
:
register_post_type( 'customtype', array(
...other options...
'rewrite' => array('slug' => 'my_type'),
));
日付を含めるにはどうすればよいですか?