gpt4 book ai didi

php - 强制 WordPress 页面刷新

转载 作者:行者123 更新时间:2023-12-01 08:38:24 25 4
gpt4 key购买 nike

==情况==

目前,我正在使用 Wordpress 来显示公告。

有 1 台服务器用于托管 Wordpress,另外 4 台 PC 用于显示公告。每台电脑都有自己的页面 URL 来显示公告。例如

  1. PC1(一楼)- http://localhost/announcement1
  2. PC2(二楼)- http://localhost/announcement2
  3. PC3(三楼)- http://localhost/announcement3
  4. PC4(四楼)- http://localhost/announcement4
  5. 管理电脑

目前,假设我对 http://localhost/announcement1 进行一些公告更改,那么我需要走到一楼,手动刷新页面才能获取最新的公告。这与其他公告相同。

==问题==

  1. 我想要完成的是,我想强制 PC1 浏览器直接从 Wordpress 管理仪表板刷新页面(保存/更新页面时 PC1 自动刷新)。这可能吗?

我在整个网络上搜索了解决方案,但我不知道要搜索的确切关键字,而且没有运气。

谢谢

最佳答案

最简单的方法是为您的公告页面设置刷新元。例如,5秒:

<meta http-equiv="Refresh" content="5">

我不知道您是否有可以修改的主题,但实现此目的的一种方法是使用 wp_head 操作上的 Hook 。像这样:

function wp_50642305_add_refresh_header() {
echo '<meta http-equiv="Refresh" content="5">';
}
add_action( 'wp_head', 'add_refresh_header' );

您可以将其放置在主题的functions.php 中或者插件文件中。

https://codex.wordpress.org/Plugin_API/Action_Reference/wp_head

关于php - 强制 WordPress 页面刷新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50642305/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com