Downloads
Download tar.gz
21.35 KB
MD5: 05758e2e51cb0074c687d3e1e6d7606b
SHA-1: 6c2bf409d4393864597566c41ea82e8bf273f507
SHA-256: ef3104fce180b8aead528aec44bc2dbd80de0fca2a6e70a3d2571af088a394f3
Download zip
26.08 KB
MD5: 449ca39711b15c15971bacbf3f7c75ea
SHA-1: a57d3c7903c39d6686354da8d1a3c9f3ab8f0311
SHA-256: d090c181c738a24cf4c61d9cbccac8cc51ce79e5c06899d1415541f1e35dead9
Release notes
Adds Support for $xml_elements, just add something similar to your rss template
<?php
$xml_elements = array(
array(
'key' => 'key1',
'value' => 'value1',
),
array(
'key' => 'key2',
'value' => 'value2',
);
array(
'key' => 'key3',
'attributes' => array(
'attrib1' => 'this attribute',
'attrib2' => 'that attribute',
'attrib3' => 'the other attribute',
),
),
);
?>
Your rss feed for the node type will appear like this
<item>
<title>some kind of title</title>
<link>www.somelink.com</link>
<description>some description, etc etc</description>
<key1>value1</key1>
<key2>value2</key2>
<key3 attrib1="this attribute" attrib2="that attribute" attrib3="the other attribute"/>
</item>