Parameters
$plugin
arrayrequired
Source
public function _search_callback( $plugin ) {
global $s;
foreach ( $plugin as $value ) {
if ( is_string( $value ) && false !== stripos( strip_tags( $value ), urldecode( $s ) ) ) {
return true;
}
}
return false;
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.