MagpieRSS::append_content
Метод класса: MagpieRSS{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$MagpieRSS = new MagpieRSS(); $MagpieRSS->append_content( $text );
- $text(обязательный)
- .
Код MagpieRSS::append_content() MagpieRSS::append content WP 7.0
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 );
}
}