// Eklenti etkinleştirildiğinde zamanlayıcıyı ayarla
function activate_auto_draft_cleanup() {
wp_schedule_event( time(), 'daily', 'auto_draft_cleanup_event' );
}
register_activation_hook( __FILE__, 'activate_auto_draft_cleanup' );
// Eklenti devre dışı bırakıldığında zamanlayıcıyı temizle
function deactivate_auto_draft_cleanup() {
wp_clear_scheduled_hook( 'auto_draft_cleanup_event' );
}
register_deactivation_hook( __FILE__, 'deactivate_auto_draft_cleanup' );
// Zamanlayıcı tarafından tetiklenen görevi gerçekleştir
function auto_draft_cleanup_task() {
global $wpdb;
$wpdb->query(
$wpdb->prepare(
"DELETE FROM $wpdb->posts WHERE post_status = 'auto-draft'"
)
);
}
add_action( 'auto_draft_cleanup_event', 'auto_draft_cleanup_task' );temanın functions.php içersine uygun bir yere ekleyin kontrol edip günlük temizlik yapsın.
auto draft günde bir sil
0
●38
- 21-06-2023, 20:11:55Dbde yığınla auto draft görürsünüz