How to using PHP to delete wordpress coments?
Sometimes there are thousands wordpresss comments there, it is too difficult to delete them. Any method to delete them one time without login phpmyadmin? The answer is yes, the follow code can help you. include(‘wp-config.php’); mysql_query(“truncate table wp_comments;”); Copy the… Read moreHow to using PHP to delete wordpress coments?