自定义帖子类型不能使用WordPress permalinks设置中定义的“day/name”permalink结构。您需要添加自己的重写规则以满足您的需要。
例如:
add_action(\'init\',\'my_rewrite_rules\');
function my_rewrite_rules(){
// Replace custom_post_type_slug with the slug of your custom post type
add_rewrite_rule( \'custom_post_type_slug/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(.+)/?$\', \'index.php?custom_post_type_slug=\'.$matches[4], \'top\' );
}
请注意,我没有测试上面的代码。在测试之前,需要刷新重写规则。