Missed schedule 解决方法
一、在functions中加入: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16…
一、在functions中加入:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?php
if(!function_exists(‘add_action’)){
header(‘Status 403 Forbidden’);header(‘HTTP/1.0 403 Forbidden’);header(‘HTTP/1.1 403 Forbidden’);exit();}
?>
<?php
function wpms_log(){
echo“n<!–Plugin WP Missed Schedule 2011.0920.2011 Active–>”;
}
add_action(‘wp_head’,‘wpms_log’);
add_action(‘wp_footer’,‘wpms_log’)
?>
<?php
define(‘WPMS_DELAY’,5);
define(‘WPMS_OPTION’,‘wp_missed_schedule’);
function wpms_replace(){
delete_option(WPMS_OPTION);
}
register_deactivation_hook(__FILE__,‘wpms_replace’);
function wpms_init(){
remove_action(‘publish_future_post’,‘check_and_publish_future_post’);
$last=get_option(WPMS_OPTION,false);
if(($last!==false)&&($last>(time()–(WPMS_DELAY*60))))return;
update_option(WPMS_OPTION,time());
global$wpdb;
$scheduledIDs=$wpdb->get_col(“SELECT`ID`FROM`{$wpdb->posts}`”.“WHERE(“.“((`post_date`>0)&&(`post_date`<=CURRENT_TIMESTAMP()))OR”.“((`post_date_gmt`>0)&&(`post_date_gmt`<=UTC_TIMESTAMP()))”.“)AND`post_status`=’future’LIMIT 0,5”);
if(!count($scheduledIDs))return;
foreach($scheduledIDs as$scheduledID){if(!$scheduledID)continue;
wp_publish_post($scheduledID);}
}
add_action(‘init’,‘wpms_init’,0)
?>
|
二、WP Missed Schedule
安装WP Missed Schedule插件
类别:WordPress开发、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!