MagpieRSS::append_contentpublicWP 1.0

Method of the class: MagpieRSS{}

No Hooks.

Returns

null. Nothing (null).

Usage

$MagpieRSS = new MagpieRSS();
$MagpieRSS->append_content( $text );
$text(required)
.

MagpieRSS::append_content() code WP 6.9

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 );
	}
}