Viewing 2 replies - 1 through 2 (of 2 total)
  • anonymized-14765447

    (@anonymized-14765447)

    Hey there!

    In admin area you’ve disabled trackbacks for all new posts, but not for existed.
    So, you need this:

    UPDATE wp_posts SET ping_status='closed' WHERE post_status = 'publish' AND post_type = 'post';
    UPDATE wp_posts SET ping_status='closed' WHERE post_status = 'publish' AND post_type = 'page';

    to get this issue done. (pay attention to tables trefix!)

    And, btw, you can change ping_status and comments_ctatus on special WP options page – website.tld/wp-admin/options.php:
    default_ping_status -> closed
    default_pingback_flag -> 0
    default_comment_status -> closed

    • This reply was modified 6 years, 7 months ago by anonymized-14765447.
    Thread Starter thinkDrew

    (@thinkdrew)

    Thanks @exmi

    I will run this script & wait and see! Cheers.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Still Getting Trackbacks after disabled’ is closed to new replies.