Delete Spam & Trash Comments from Wordpress in One click
Автор: XYZScripts
Загружено: 2025-02-11
Просмотров: 28
Описание:
This video explains how to delete spam and trash comments from Wordpress using XYZ WP Code Snippet plugin. (https://xyzscripts.com/wordpress-plugins/x...)
Use below PHP code to create the one click spam and trash comments deletion snippet
<?php
// Delete comments in spam
$spam_comments = get_comments(array(
'status' => 'spam',
'number' => 0, // Get all spam comments
));
if ($spam_comments) {
foreach ($spam_comments as $comment) {
wp_delete_comment($comment->comment_ID, true); // true means force delete
}
}
// Delete comments in trash
$trash_comments = get_comments(array(
'status' => 'trash',
'number' => 0, // Get all trash comments
));
if ($trash_comments) {
foreach ($trash_comments as $comment) {
wp_delete_comment($comment->comment_ID, true); // true means force delete
}
}
Повторяем попытку...
Доступные форматы для скачивания:
Скачать видео
-
Информация по загрузке: