在PHP中,我们可以用header函数来发送原生HTTP头,但在WordPress中怎么发送HTTP头呢?
将下面的代码放到当前主题的functions.php中即可:
function ludou_http_headers() {
// 判断用户是否登陆,并且是在非后台(前台)页面
if(is_user_logged_in() && !is_admin()) {
// php的header函数发送HTTP 头
header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
}
}
add_action( 'wp', 'ludou_http_headers' );
资源均来自第三方,谨慎下载,前往第三方网站下载