MagpieRSS::append_content()publicWP 1.0

Метод класса: MagpieRSS{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$MagpieRSS = new MagpieRSS();
$MagpieRSS->append_content( $text );
$text (обязательный)
-

Код MagpieRSS::append_content() WP 6.5.2

function append_content($text) {
	if ( $this->initem ) {
		$this->concat( $this->current_item[ $this->incontent ], $text );
	}
	elseif ( $this->inchannel ) {
		$this->concat( $this->channel[ $this->incontent ], $text );
	}
}