Remove link preview in discussion dashboard

Since version 4.1.6, Akismet has a filter which allows you to disable these “mShots” (the site preview popups):

<?php
function disable_akismet_mshots( $value ) {
    return false;
}
add_filter( 'akismet_enable_mshots', 'disable_akismet_mshots' );

Leave a Comment