有没有办法在WordPress中禁用日期存档?
例如,我根本不想有日期档案(例如,example.com/2021/06/11)。有没有办法关闭这些档案?
我在Google上找到了以下代码片段,但它似乎没有改变任何东西。
add_action( \'template_redirect\', \'remove_date_archives\' );
function remove_date_archives() {
// Check if we are on date archive page and return 404
if ( is_date() ) {
global $wp_query;
$wp_query->set_404();
}
}
?>
欢迎提供任何提示或链接。提前谢谢。