have_comments

Definition:
function have_comments() {}

Whether there are comments to loop over.

Source code

	function have_comments() {

		if ( $this->current_comment + 1 < $this->comment_count ) {

			return true;

		} elseif ( $this->current_comment + 1 == $this->comment_count ) {

			$this->rewind_comments();

		}



		return false;

	}

1941

No comments yet... Be the first to leave a reply!

Leave a comment