WP_User_Search::is_search(): bool

Whether there are search terms.


Return

bool


Top ↑

Source

File: wp-admin/includes/deprecated.php. View all references

function is_search() {
	if ( $this->search_term )
		return true;
	return false;
}

Top ↑

Changelog

Changelog
Version Description
2.1.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.