在Wordpress 3.0中的自定义post_type永久链接中使用日期

Ben*_*enj 6 wordpress date permalinks custom-post-type

我正在向Wordpress添加自定义post_type,并希望永久链接结构如下所示:

/%post_type%/%year%/%monthnum%/%postname%/
Run Code Online (Sandbox Code Playgroud)

我无法弄清楚如何添加日期标签.使用此代码,给我/my_type/example-post-slug/:

register_post_type( 'customtype', array(
    ...other options...
    'rewrite' => array('slug' => 'my_type'),
));
Run Code Online (Sandbox Code Playgroud)

我如何包含日期?

小智 -3

使用这个它可以100%工作:

'rewrite' => array('slug'=>date('Y').'/'.date('m').'/custom_post_type_slug','with_front'=>true)
Run Code Online (Sandbox Code Playgroud)