Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 wordpress 模板。我使用我的模板页面来实现 crud 功能。它运行良好,但一页正在创建会话问题。它会在 Mozilla Firefox 中失去会话。如果我刷新该页面或重定向到另一个页面,那么会话会自动丢失.. 有人可以帮我解决一个问题.. 为什么会发生这种情况?
PS:该特定页面在 chrome、safari 和 IE 中运行良好,即它不会丢失会话。
谢谢!
这是由于Mozilla的缓存管理的问题
实际上,wp 为下一个和上一个创建元标记。链接并让您的性能受到打击
remove_action('wp_head', 'adjacent_posts_rel_link_wp_head');
在您的functions.php文件中添加以上行,这可能会解决您的问题