Available since: 1.0
searchwp_missing_integration_notices
SearchWP has a number of official integration extensions designed to work directly with other plugins. If SearchWP finds that you areĀ using a plugin that has an available integration extension, it will output a warning at the top of WordPress admin screens.
If you are intentionally not using an integration extension and wish for this notice to go away, add the following to your theme’s functions.php
:
NOTE: this will also prevent subsequent integration notices from appearing. If you install a new plugin down the line that has an integration extension available, you will not see the warning.
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_missing_integration_notices', '__return_false' ); |