Hi,
I was wondering as I'm so accustomed to the WP admin if using a custom post type and just custom fields and metaboxes on its edit screen would be ok to create XML files?
Custom field values would be values between certain tags in the xml and with the help of a custom single.php file I would able to echo these values between <tags></tags> with the name tags echoed as well - and basically I could use that page an xml file later. (and probably save the page to the server as proper xml file)
I made a quick test and although I'm declaring the page as XML (without header, footer) the XML name tags are stripped and only the values are shown:
<?php echo '<name>some name</name>' ; ?>
is just
some name
I know it sounds crazy but the idea to use the WP admin as an XML editor and publisher come to mind and now I can't get rid of it.
Would it possible?
thx