我添加自定義post_type WordPress的,並想將固定鏈接結構看起來像這樣:在自定義使用日期在WordPress的永久鏈接post_type 3.0
/%post_type%/%year%/%monthnum%/%postname%/
我無法弄清楚如何添加日期標籤。使用此代碼,給我/my_type/example-post-slug/
:
register_post_type('customtype', array(
...other options...
'rewrite' => array('slug' => 'my_type'),
));
如何包含日期?