<?php require(‘./wp-load.php’); $strsql = “create table my_tmp as select min(ID) as col1 from wp_posts group by post_title”; $strsql1 = “delete from wp_posts where ID not in (select col1 from my_tmp)”; $strsql2 = “drop table my_tmp”; $result = mysql_query($strsql); $result = mysql_query($strsql1); $result = mysql_query($strsql2); ?>