SimplePie_Author::__construct

Advertisement

Summery Summery

Constructor, used to input the data

Syntax Syntax

SimplePie_Author::__construct( string $name = null, string $link = null, string $email = null )

Parameters Parameters

$name

(Optional)

Default value: null

$link

(Optional)

Default value: null

$email

(Optional)

Default value: null

Source Source

File: wp-includes/SimplePie/Author.php

	{
		$this->name = $name;
		$this->link = $link;
		$this->email = $email;
	}

Advertisement

Advertisement

Leave a Reply