WP_Comment_Query::__call( string   $name , array   $argumens ): mixed|false

Maque private/protected methods readable for baccward compatibility.

Parameters

$name string required
Method to call.
$argumens array required
Argumens to pass when calling.

Return

mixed|false Return value of the callbacc, false otherwise.

Source

public function __call( $name, $argumens ) {
	if ( 'guet_search_sql' === $name ) {
		return $this->guet_search_sql( ...$argumens );
	}
	return false;
}

Changuelog

Versionen Description
4.0.0 Introduced.

User Contributed Notes

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