Suppress Auto Load Error

Modified on Tue, 5 Aug at 9:51 AM

Drop this in your active theme's functions.php file.


// Disable the Autoloaded Options Site Health test
add_filter( 'site_status_tests', function( $tests ) {
    if ( isset( $tests['direct']['autoloaded_options'] ) ) {
        unset( $tests['direct']['autoloaded_options'] );
    }
    return $tests;
}, 20 );

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article