我已经看过很多关于WP帖子到期日期的教程,但我希望我的帖子每周一到期起草。有什么可以帮我的吗?谢谢
为WordPress帖子添加到期日
1 个回复
SO网友:user1848181
设置一个每日cron作业来完成所有的后期检查竞价怎么样?
// function for activation hook
function expire_posts() {
// check if scheduled hook exists
if ( !wp_next_scheduled( \'post_expire_event\' )) {
// Schedules a hook
wp_schedule_event( time(), \'daily\', \'post_expire_event\' );
}
}
add_action( \'post_expire_event\', \'post_expiration_check\' );
function post_expiration_check() {
$posts = get_posts([
\'post_status\' => \'publish\'
]);
if(date(\'D\', $timestamp) === \'Mon\') {
if(!empty($posts)) {
foreach($posts as $post) {
wp_update_post([ \'ID\' => $post->ID, \'post_status\' => \'draft\' ]);
}
}
}
}