MagpieRSS::append_content()
Method of the class: MagpieRSS{}
No Hooks.
Return
null
. Nothing (null).
Usage
$MagpieRSS = new MagpieRSS(); $MagpieRSS->append_content( $text );
- $text (required)
- -
MagpieRSS::append_content() MagpieRSS::append content code WP 6.6.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 ); } }