Available since: 2.3.1
searchwp_lazy_settings
This applies only to the legacy settings screen as of SearchWP 2.9
By default, SearchWP will lazy load the settings screen. If you would prefer this not to happen, add the following to your theme’s functions.php
:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'searchwp_lazy_settings', '__return_false' ); |