我们很多站长更新网站并不是每天都更新的,但是会设置定时更新。这样我们可以将时间灵活周转,但是我们很多网友会发现在设置的WordPress定时发布文章出错,有提示"定时发布失败"的问题。那遇到这样的问题是什么问题呢?部分是程序兼容问题,有可能是插件问题,还有就是我们服务器设置的缓存问题。
要解决"定时发布失败"问题,我们可以通过下面几个办法解决。
1、代码解决
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 );
添加到当前主题Functions.php文件中。
2、插件解决
可以安装"WP Scheduled Posts"插件来解决这个问题,这个是比较直接的办法。
这里我们安装插件激活。但是看到这款插件是需要付费的,我们可以使用"WP Missed Schedule Posts"或者"MY Missed Schedule"插件解决问题。
总之,解决WordPress程序解决定时发布文章失败选择其中一个方法。