我认为你应该在你的函数中使用cookie。php文件。
<?php
function customprefix_body_class_filter() {
$classes[] = \'has-seen-website\';
return $classes;
}
$has_seen_website = filter_input( INPUT_COOKIE, \'has_seen_website\' );
if ( !empty( $has_seen_website ) ) {
add_filter( \'body_class\', \'customprefix_body_class_filter\' );
}
setcookie(\'has_seen_website\', \'1\', time()+3600*24); // expires in 24 hours
?>