如何在 WordPress 中插入 Last-Modified HTTP 标头?
该站点不会在其响应中发送 Last-Modified 标头。
我知道我应该在某个地方插入类似 header("Last-Modified: " . the_modified_date());
但在哪里?
The site doesn't send Last-Modified header in its response.
I know I should insert somewhere something like header("Last-Modified: " . the_modified_date());
but where?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
“Last Modified”WordPress 插件对我有用。
http://wordpress.org/extend/plugins/header-last-modified/
它需要更改 wp-includes/template-loader.php,因此更新 WordPress 核心时要小心。
The "Last Modified" WordPress plugin works for me.
http://wordpress.org/extend/plugins/header-last-modified/
It requires a change in wp-includes/template-loader.php so be careful when updating the WordPress core.
这对我的所有帖子都有效 - 添加到主题functions.php文件中:
This worked for me on all posts - added into theme functions.php file:
编辑 wp-config.php
将其插入到文件末尾之前?>
Edit wp-config.php
insert it at end of file before ?>