_bbp_akismet_optimize_tables

_bbp_akismet_optimize_tables

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('_bbp_akismet_optimize_tables') is found 1 times:

  • /includes/extend/akismet.php line 1093
    1089
    1090
    1091
    1092
    1093
    1094
    1095
    1096
    1097
    1098
    1099
    * Determines whether tables should be optimized.
     *
     * @param int Random number between 1 and 5000.
     */
    $optimize = (int) apply_filters( '_bbp_akismet_optimize_tables', mt_rand( 1, 5000 ), array( $wpdb->posts, $wpdb->postmeta ) );
     
    // Lucky number 11
    if ( 11 === $optimize ) {
        $wpdb->query( "OPTIMIZE TABLE {$wpdb->posts}" );
        $wpdb->query( "OPTIMIZE TABLE {$wpdb->postmeta}" );
    }