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