BBP_User_Query::next_user()

Set up the next user and iterate current user index.


Description Description


Return Return

(WP_User) Next user.


Top ↑

Source Source

File: includes/users/template.php

	public function next_user() {
		$this->current_user++;
		$this->user = $this->results[ $this->current_user ];

		return $this->user;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
2.6.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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