SimplePie::set_author_class()publicWP 1.0

Set which class SimplePie uses for handling author data

Method of the class: SimplePie{}

No Hooks.

Return

null. Nothing (null).

Usage

$SimplePie = new SimplePie();
$SimplePie->set_author_class( $class );
$class **
-
Default: 'SimplePie_Author'

SimplePie::set_author_class() code WP 6.5.2

public function set_author_class($class = 'SimplePie_Author')
{
	return $this->registry->register('Author', $class, true);
}