On this page
MagpieRSS::append_content( $text )
Source
File: wp-includes/rss.php. View all references
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 );
}
}
Related
Uses
| Uses | Description |
|---|---|
| MagpieRSS::concat() wp-includes/rss.php |
Used By
| Used By | Description |
|---|---|
| MagpieRSS::feed_end_element() wp-includes/rss.php | |
| MagpieRSS::feed_start_element() wp-includes/rss.php | |
| MagpieRSS::feed_cdata() wp-includes/rss.php |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/magpierss/append_content