I can’t think of a way to get both of these elements to be included using the selectors we offer.
But a workaround is to extract the date from the URL. If you update to using Feed Creator 2.1 where we introduced attribute selectors. You can do the following:
We’re using a @href as the item date selector. This selects the href attribute on the link as the date source. These URLs currently look like this:
We then use the following date format to get the date out from these URLs:
/*/Y/m/d+
The /*/ should match the /articles/ URL segment and then Y/m/d matches the date. And + tells PHP to ignore the rest of the string (not to treat it as an error).