• 05-08-2015, 14:50:57
    #1
    Merhabalar,

    Wordpress sitemize gelen yorumların site adresinin bulunduğu "comment_author_url" tablosunun full içeriğini toplu olarak nasıl silebilirim?

    Görsel: http://prntscr.com/8139o7
  • 06-08-2015, 13:45:05
    #2
    <?php
    include("wp-config.php");
    $wpdb->update($wpdb->wp_comments, array("comment_author_url" => ""));
    //İster bunu ana dizine kaydet çalıştır
    //UPDATE wp_comments SET `comment_author_url` = '';
    //ister bunu phpmyadminden çalıştır.
    ?>