-->
<!--?php
add_action(
'publish_post'
,
'refresh_front_page'
, 0);
//发布或者更新日志时候刷新首页
'edit_post'
//有新留言或者留言被删除的时候刷新首页
'delete_post'
//删除日志时候刷新首页
'publish_phone'
//通过 email 发布日志之后刷新首页
function refresh_front_page(){
$front_page_id = get_option(
'page_on_front'
);
//获取显示首页的页面 ID
wp_cache_post_edit($front_page_id);
//刷新该页
}
?-->
本文链接:https://it72.com:4443/800.htm