WP_Plugins_List_Table::_search_callback( array $plugin ): bool

In this article

Parameters

$pluginarrayrequired

Return

bool

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.