最近在使用WordPress定期发布文章时提示定时发布失效。造成失败原因不太清楚,应该是主机慢有关吧。下面是小…
最近在使用WordPress定期发布文章时提示定时发布失效。造成失败原因不太清楚,应该是主机慢有关吧。下面是小编网上找到的解决方法,需要的可以参考参考。
使用插件解决WordPress定时发布失效
网友推荐的两个解决定时发布失败的插件:WP Missed Schedule Posts和MY Missed Schedule ,需要的朋友可以自行到WordPress官网去下载。
使用代码解决WordPress定时发布失效
您还可以使用以下代码,该代码从WP Missed Schedule Posts插件的旧版本中提取,将代码添加到当前主题的functions.php中即可:
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 32 33 34 35
|
if (!function_exists( ‘add_action’ ) ) {
header( ‘Status 403 Forbidden’ );
header( ‘HTTP/1.0 403 Forbidden’ );
header( ‘HTTP/1.1 403 Forbidden’ );
exit(); }
function wpms_log() {
echo“n“; }
add_action( ‘wp_head’, ‘wpms_log’ );
add_action( ‘wp_footer’, ‘wpms_log’ );
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 );
|
添加代码后,定时发表的文章仍然会提示失败,但是两三分钟后,它将正常发布。
以上两种方法具体选择哪种,看个人喜好。
还没有任何评论,赶紧来占个楼吧!