Please or Register to create posts and topics.

How to delete multiple post ?

Dear developer kindly tell me how to deletes multiple post

Hello @farhanali

You can delete the posts from the front-end with the available buttons (see image below). Deleting multiple posts with one click is not possible (yet).

Uploaded files:
  • delete.PNG
If you want to support the development of Asgaros Forum, you can leave a good review or donate. Thank you very much!

Dear Asgaros,

Any support with this would be helpful – even if it is a matter of editing (or deleting) the database and starting again. Otherwise I have the prospect of deleting over 500 (spam) posts manually. Despite my trying to put a simple Captcha in place I discovered this morning that one user has managed to post multiple times to the forum.

Yours,

Kitchen Chemist

Hello @kitchen-chemist

If those multiple posts got created by a specific user, you can basically also delete all of them with a database-query by passing in the author-id of that user. For example:

DELETE FROM wp_forum_topics WHERE author_id = 123;
DELETE FROM wp_forum_posts WHERE author_id = 123;

 

If you want to support the development of Asgaros Forum, you can leave a good review or donate. Thank you very much!