On this page
MagpieRSS::feed_cdata( $p, $text )
Source
File: wp-includes/rss.php. View all references
function feed_cdata ($p, $text) {
if ($this->feed_type == ATOM and $this->incontent)
{
$this->append_content( $text );
}
else {
$current_el = join('_', array_reverse($this->stack));
$this->append($current_el, $text);
}
}
Related
Uses
| Uses | Description |
|---|---|
| MagpieRSS::append_content() wp-includes/rss.php | |
| MagpieRSS::append() wp-includes/rss.php |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/magpierss/feed_cdata